File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ The Python client is generated using Airflow's [openapi spec](https://github.com
26
26
To update the client for new APIs do the following steps:
27
27
28
28
``` bash
29
+ # set the version of the client
30
+ export VERSION=2.0.0rc1
29
31
# clone this repo
30
32
git clone git@github.com:apache/airflow-client-python.git
31
33
cd airflow-client-python
@@ -68,7 +70,17 @@ cd ${CLIENT_REPO_ROOT}
68
70
` ` `
69
71
70
72
- Update CHANGELOG.md with the details.
71
- - Raise a PR in airflow-client-python
73
+ - Commit the Changes with the message "Add Client Version ${VERSION}" :
74
+ ` ` ` shell script
75
+ git add .
76
+ git commit -m "Add Client Version ${VERSION}"
77
+ ` ` `
78
+ - Cherry-pick this commit : https://github.com/apache/airflow-client-python/commit/ddd6fc0545a8066f474c765e1644a5202eebd256
79
+ ` ` ` shell script
80
+ git cherry-pick ddd6fc0545a8066f474c765e1644a5202eebd256 -x
81
+ ` ` `
82
+ # TODO: Remove the cherry-pick instruction above when we upgrade to new client generator
83
+ - Raise a PR in airflow-client-python with the above changes
72
84
- Merge the above PR when approved before proceeding
73
85
74
86
# Prepare the Apache Airflow Python Client Package RC
You can’t perform that action at this time.
0 commit comments