diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8fd1a85fc..93faf337c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.25.1.dev +current_version = 3.25.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 3d492517f..3cce41daf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +3.25.1 (2024-02-09) +=================== + +Bugfixes +-------- + +- Addressed some edge-cases involving advisory-collection-naming and imports. + `#3380 `__ + + +---- + + 3.25.0 (2024-01-18) =================== diff --git a/CHANGES/3380.bugfix b/CHANGES/3380.bugfix deleted file mode 100644 index 2bd70b92e..000000000 --- a/CHANGES/3380.bugfix +++ /dev/null @@ -1 +0,0 @@ -Addressed some edge-cases involving advisory-collection-naming and imports. diff --git a/docs/conf.py b/docs/conf.py index 9f91a3cf0..4fc5610ef 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = "3.25.1.dev" +version = "3.25.1" # The full version, including alpha/beta/rc tags. -release = "3.25.1.dev" +release = "3.25.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_rpm/app/__init__.py b/pulp_rpm/app/__init__.py index dba4ba29f..8f1e29ac9 100644 --- a/pulp_rpm/app/__init__.py +++ b/pulp_rpm/app/__init__.py @@ -8,6 +8,6 @@ class PulpRpmPluginAppConfig(PulpPluginAppConfig): name = "pulp_rpm.app" label = "rpm" - version = "3.25.1.dev" + version = "3.25.1" python_package_name = "pulp-rpm" domain_compatible = True diff --git a/setup.py b/setup.py index 421339b5c..dc2c87244 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-rpm", - version="3.25.1.dev", + version="3.25.1", description="RPM plugin for the Pulp Project", long_description=long_description, license="GPLv2+",