This is an automated email from the ASF dual-hosted git repository.
ephraimanierobi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-client-python.git
The following commit(s) were added to refs/heads/main by this push:
new b08f464 Minor updates to the release doc (#73)
b08f464 is described below
commit b08f46429015dcb42596674ab3dff36b6ed3c9a4
Author: Ephraim Anierobi <[email protected]>
AuthorDate: Tue May 2 23:30:42 2023 +0100
Minor updates to the release doc (#73)
---
dev/README_RELEASE_CLIENT.md | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/dev/README_RELEASE_CLIENT.md b/dev/README_RELEASE_CLIENT.md
index ab67a14..a629394 100644
--- a/dev/README_RELEASE_CLIENT.md
+++ b/dev/README_RELEASE_CLIENT.md
@@ -52,7 +52,7 @@ If your deployment of Airflow uses any different
authentication mechanism than t
```bash
# bump up the version in python.sh & run the following command
-${AIRFLOW_REPO_ROOT}/clients/gen/python.sh
airflow/api_connexion/openapi/v1.yaml
${CLIENT_REPO_ROOT}/airflow-client-python/airflow_client
+${AIRFLOW_REPO_ROOT}/clients/gen/python.sh
airflow/api_connexion/openapi/v1.yaml ${CLIENT_REPO_ROOT}/airflow_client
cd ${CLIENT_REPO_ROOT}
```
@@ -63,7 +63,8 @@ cd ${CLIENT_REPO_ROOT}
which this release is based on:
```shell script
- git log 2.3.0..2.5.0 --pretty=oneline
+ # Run this command in Airflow Repo
+ git log 2.3.0..2.5.0 --pretty=oneline --
airflow/api_connexion/openapi/v1.yaml
```
- Update CHANGELOG.md with the details.
@@ -97,7 +98,7 @@ of this the version in the built artifacts that will become
the official Apache
- Tag your release
```shell script
- git tag -s ${VERSION}
+ git tag -s ${VERSION} -m "Airflow Python Client {VERSION}"
```
- Clean the checkout: the sdist step below will
@@ -118,6 +119,7 @@ of this the version in the built artifacts that will become
the official Apache
in the file produced.
```shell script
+ pip install wheel
python setup.py sdist bdist_wheel
```