From 39b65575cd8cb2f0e7ecc9e91ca4871f269b2749 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Wed, 1 Mar 2023 19:52:52 +0100 Subject: [PATCH] Change the release tag to use the release identification According to the TC resolution [1] and the release identification document [2], the release number will be used as primary identifier in the development cycle. Release name will be used in marketing. [1]https://governance.openstack.org/tc/resolutions/20220524-release-identification-process.html [2]https://governance.openstack.org/tc/reference/release-naming.html Change-Id: Ia3da9bf6d6113edacb0e21de9a51bd60d5e2465b --- neutron/db/migration/__init__.py | 4 ++-- .../expand/fc153938cdc1_update_segment_networks_constraint.py | 0 neutron/db/migration/cli.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename neutron/db/migration/alembic_migrations/versions/{antelope => 2023.1}/expand/fc153938cdc1_update_segment_networks_constraint.py (100%) diff --git a/neutron/db/migration/__init__.py b/neutron/db/migration/__init__.py index b504f57e953..35fcf018ef7 100644 --- a/neutron/db/migration/__init__.py +++ b/neutron/db/migration/__init__.py @@ -37,7 +37,7 @@ WALLABY = 'wallaby' XENA = 'xena' YOGA = 'yoga' ZED = 'zed' -ANTELOPE = 'antelope' +RELEASE_2023_1 = '2023.1' NEUTRON_MILESTONES = [ # earlier milestones were not tagged @@ -55,7 +55,7 @@ NEUTRON_MILESTONES = [ WALLABY, XENA, YOGA, - ANTELOPE, + RELEASE_2023_1, # Do not add the milestone until the end of the release ] diff --git a/neutron/db/migration/alembic_migrations/versions/antelope/expand/fc153938cdc1_update_segment_networks_constraint.py b/neutron/db/migration/alembic_migrations/versions/2023.1/expand/fc153938cdc1_update_segment_networks_constraint.py similarity index 100% rename from neutron/db/migration/alembic_migrations/versions/antelope/expand/fc153938cdc1_update_segment_networks_constraint.py rename to neutron/db/migration/alembic_migrations/versions/2023.1/expand/fc153938cdc1_update_segment_networks_constraint.py diff --git a/neutron/db/migration/cli.py b/neutron/db/migration/cli.py index 41896419bc4..f24cf084757 100644 --- a/neutron/db/migration/cli.py +++ b/neutron/db/migration/cli.py @@ -38,7 +38,7 @@ HEADS_FILENAME = 'HEADS' CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD' EXPAND_HEAD_FILENAME = 'EXPAND_HEAD' -CURRENT_RELEASE = migration.ANTELOPE +CURRENT_RELEASE = migration.RELEASE_2023_1 RELEASES = ( migration.LIBERTY, migration.MITAKA, @@ -55,7 +55,7 @@ RELEASES = ( migration.XENA, migration.YOGA, migration.ZED, - migration.ANTELOPE, + migration.RELEASE_2023_1, ) EXPAND_BRANCH = 'expand'