Skip to content

Commit

Permalink
Update version number, changelog, and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Bonomi committed Sep 16, 2021
1 parent 9962292 commit 5b42b94
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ If git support is enabled, the DAGs are stored in a Git repository. You may use

### Screenshots

![File manager](https://andreax79.github.io/airflow-code-editor/screenshots/1.png)
![File manager](https://user-images.githubusercontent.com/1288154/133688225-1a5e2298-bfb2-402f-999c-1126b4e4ceb5.png)

![Code editor](https://andreax79.github.io/airflow-code-editor/screenshots/2.png)
![Code editor](https://user-images.githubusercontent.com/1288154/133688469-96a0ae00-a1dd-4923-b09a-59cd41a5b4e7.png)

![Git tags](https://andreax79.github.io/airflow-code-editor/screenshots/3.png)

Expand Down Expand Up @@ -124,19 +124,26 @@ Example:
source ./scripts/activate.sh
```

4. Make changes you need. You can start Airflow with this command:
4. Make changes you need. Build npm package with:

```bash
./scripts/airflow.sh
make npm-build
```

5. Run tests
5. You can start Airflow webserver or scheduler with these commands:

```bash
./scripts/tests.sh
make webserver
make scheduler
```

6. Commit and push changes
6. Run tests

```bash
make test
```

7. Commit and push changes

```bash
git add .
Expand All @@ -153,6 +160,7 @@ Example:
* Git WebUI, A standalone local web based user interface for git repositories - https://github.com/alberthier/git-webui
* Black, The Uncompromising Code Formatter - https://github.com/psf/black
* Vue.js - https://github.com/vuejs/vue
* Vue-Tree, Vue component that implements a TreeView control - https://github.com/grapoza/vue-tree
* Vue-good-table, data table for VueJS - https://github.com/xaksis/vue-good-table
* Vue-tree, TreeView control for VueJS - https://github.com/grapoza/vue-tree
* Splitpanes - https://github.com/antoniandre/splitpanes
* Axios, Promise based HTTP client for the browser and node.js - https://github.com/axios/axios
2 changes: 1 addition & 1 deletion airflow_code_editor/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.1
5.1.0
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -269,3 +269,11 @@

- Axios upgrade
- CodeMirror upgrade

## 5.1.0

2021-09-16

### Changed

- Vue-Good-Table file list (sortable&searchable)
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.0.1",
"version": "5.1.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 5b42b94

Please sign in to comment.