Skip to content

Commit

Permalink
Update version number and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Bonomi committed Mar 23, 2022
1 parent 139a04f commit 10b4e56
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ You can set options editing the Airflow's configuration file or setting environm
You can edit your *airflow.cfg* adding any of the following settings in the \[code_editor\] section.
All the settings are optional.

* **enabled** enable this plugin (default: True).
* **git_enabled** enable git support (default: True). If git is not installed, disable this option.
* **git_cmd** git command (path)
* **git_default_args** git arguments added to each call (default: -c color.ui=true)
Expand All @@ -67,6 +68,7 @@ All the settings are optional.
Example:
```
[code_editor]
enabled = True
git_enabled = True
git_cmd = /usr/bin/git
git_default_args = -c color.ui=true
Expand All @@ -82,6 +84,7 @@ Example:

You can also set options with the following environment variables:

* AIRFLOW__CODE_EDITOR__ENABLED
* AIRFLOW__CODE_EDITOR__GIT_ENABLED
* AIRFLOW__CODE_EDITOR__GIT_CMD
* AIRFLOW__CODE_EDITOR__GIT_DEFAULT_ARGS
Expand Down
2 changes: 1 addition & 1 deletion airflow_code_editor/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.6
5.2.0
2 changes: 1 addition & 1 deletion airflow_code_editor/static/airflow_code_editor.js

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@
2022-01-08

### Changed

- CodeMirror upgrade

## 5.1.5
Expand All @@ -325,6 +326,7 @@
- axios upgrade

### Changed

- CodeMirror upgrade

## 5.1.6
Expand All @@ -337,3 +339,15 @@

### Changed
- CodeMirror upgrade

## 5.2.0

2022-03-23

### Added

- enabled configuration option added

### Changed

- splitpanes upgrade
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airflow-code-editor",
"version": "5.1.6",
"version": "5.2.0",
"description": "A plugin for [Apache Airflow](https://github.com/apache/airflow) that allows you to edit DAGs in browser. It provides a file managing interface within specified directories and it can be used to edit and download your files. If git support is enabled, the DAGs are stored in a Git repository. You may use it to view Git history, review local changes and commit.",
"private": true,
"directories": {
Expand Down

0 comments on commit 10b4e56

Please sign in to comment.