Skip to content

Commit 287fbd0

Browse files
authored
Change airflowctl version to 0.* (#57773)
1 parent 26e8477 commit 287fbd0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

airflow-ctl/RELEASE_NOTES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
specific language governing permissions and limitations
1616
under the License.
1717
18-
airflowctl 1.0.0 (2025-10-30)
18+
airflowctl 0.1.0 (2025-11-03)
1919
-----------------------------
2020

2121
Beta Release of airflowctl, a command-line tool. There are lots of great features to use from start.

airflow-ctl/docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
Changelog
2727
---------
2828

29-
1.0.0
29+
0.1.0
3030
.....
3131
Initial version of the airflowctl.

airflow-ctl/src/airflowctl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
2121

22-
__version__ = "1.0.0"
22+
__version__ = "0.1.0"

airflow-ctl/tests/airflow_ctl/ctl/commands/test_version_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def mock_client():
3737
client.version.get.return_value.model_dump.return_value = {
3838
"version": "3.1.0",
3939
"git_version": None,
40-
"airflowctl_version": "1.0.0",
40+
"airflowctl_version": "0.1.0",
4141
}
4242

4343
return client

0 commit comments

Comments
 (0)