This is an automated email from the ASF dual-hosted git repository.
ash pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 55bc07859f9 [v3-1-test] Change airflowctl version to 0.* (#57773)
(#57829)
55bc07859f9 is described below
commit 55bc07859f956fc7971881683329a4a19719aea5
Author: Bugra Ozturk <[email protected]>
AuthorDate: Wed Nov 5 11:44:36 2025 +0100
[v3-1-test] Change airflowctl version to 0.* (#57773) (#57829)
(cherry picked from commit 287fbd0c7e0db72b8a685688b1e487b9cb713740)
---
airflow-ctl/RELEASE_NOTES.rst | 4 ++--
airflow-ctl/docs/changelog.rst | 2 +-
airflow-ctl/src/airflowctl/__init__.py | 2 +-
airflow-ctl/tests/airflow_ctl/ctl/commands/test_version_command.py | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/airflow-ctl/RELEASE_NOTES.rst b/airflow-ctl/RELEASE_NOTES.rst
index 138ed115947..58f1ecbeacb 100644
--- a/airflow-ctl/RELEASE_NOTES.rst
+++ b/airflow-ctl/RELEASE_NOTES.rst
@@ -15,8 +15,8 @@
specific language governing permissions and limitations
under the License.
-airflowctl 1.0.0b1 (2025-08-25)
-------------------------------
+airflowctl 0.1.0 (2025-11-03)
+-----------------------------
Beta Release of airflowctl, a command-line tool. There are lots of great
features to use from start.
Please check the documentation for quick start and usage instructions.
diff --git a/airflow-ctl/docs/changelog.rst b/airflow-ctl/docs/changelog.rst
index ad5096117aa..2285ff8e6c3 100644
--- a/airflow-ctl/docs/changelog.rst
+++ b/airflow-ctl/docs/changelog.rst
@@ -26,6 +26,6 @@
Changelog
---------
-1.0.0
+0.1.0
.....
Initial version of the airflowctl.
diff --git a/airflow-ctl/src/airflowctl/__init__.py
b/airflow-ctl/src/airflowctl/__init__.py
index 6769fff0060..32a64efabc5 100644
--- a/airflow-ctl/src/airflowctl/__init__.py
+++ b/airflow-ctl/src/airflowctl/__init__.py
@@ -19,4 +19,4 @@ from __future__ import annotations
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
-__version__ = "1.0.0"
+__version__ = "0.1.0"
diff --git a/airflow-ctl/tests/airflow_ctl/ctl/commands/test_version_command.py
b/airflow-ctl/tests/airflow_ctl/ctl/commands/test_version_command.py
index fee0487d3f7..72998b97442 100644
--- a/airflow-ctl/tests/airflow_ctl/ctl/commands/test_version_command.py
+++ b/airflow-ctl/tests/airflow_ctl/ctl/commands/test_version_command.py
@@ -37,7 +37,7 @@ def mock_client():
client.version.get.return_value.model_dump.return_value = {
"version": "3.1.0",
"git_version": None,
- "airflowctl_version": "1.0.0",
+ "airflowctl_version": "0.1.0",
}
return client