Skip to content

Commit 5b42b94

Browse files
author
Andrea Bonomi
committed
Update version number, changelog, and README.md
1 parent 9962292 commit 5b42b94

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ If git support is enabled, the DAGs are stored in a Git repository. You may use
1818

1919
### Screenshots
2020

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

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

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

@@ -124,19 +124,26 @@ Example:
124124
source ./scripts/activate.sh
125125
```
126126

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

129129
```bash
130-
./scripts/airflow.sh
130+
make npm-build
131131
```
132132

133-
5. Run tests
133+
5. You can start Airflow webserver or scheduler with these commands:
134134

135135
```bash
136-
./scripts/tests.sh
136+
make webserver
137+
make scheduler
137138
```
138139

139-
6. Commit and push changes
140+
6. Run tests
141+
142+
```bash
143+
make test
144+
```
145+
146+
7. Commit and push changes
140147

141148
```bash
142149
git add .
@@ -153,6 +160,7 @@ Example:
153160
* Git WebUI, A standalone local web based user interface for git repositories - https://github.com/alberthier/git-webui
154161
* Black, The Uncompromising Code Formatter - https://github.com/psf/black
155162
* Vue.js - https://github.com/vuejs/vue
156-
* Vue-Tree, Vue component that implements a TreeView control - https://github.com/grapoza/vue-tree
163+
* Vue-good-table, data table for VueJS - https://github.com/xaksis/vue-good-table
164+
* Vue-tree, TreeView control for VueJS - https://github.com/grapoza/vue-tree
157165
* Splitpanes - https://github.com/antoniandre/splitpanes
158166
* Axios, Promise based HTTP client for the browser and node.js - https://github.com/axios/axios

airflow_code_editor/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.1.0

changelog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,3 +269,11 @@
269269

270270
- Axios upgrade
271271
- CodeMirror upgrade
272+
273+
## 5.1.0
274+
275+
2021-09-16
276+
277+
### Changed
278+
279+
- Vue-Good-Table file list (sortable&searchable)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airflow-code-editor",
3-
"version": "5.0.1",
3+
"version": "5.1.0",
44
"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.",
55
"private": true,
66
"directories": {

0 commit comments

Comments
 (0)