diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1842450c1..d550eb4c5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.19.2.dev +current_version = 2.19.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 3105f20ea..a9bb5b553 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,15 @@ Changelog .. towncrier release notes start +2.19.2 (2024-03-20) +=================== + +No significant changes. + + +---- + + 2.19.1 (2024-03-20) =================== diff --git a/docs/conf.py b/docs/conf.py index 7ac813657..44c6befa0 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "2.19.2.dev" +version = "2.19.2" # The full version, including alpha/beta/rc tags. -release = "2.19.2.dev" +release = "2.19.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_container/app/__init__.py b/pulp_container/app/__init__.py index d858e9383..ba0cfa062 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -6,7 +6,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.19.2.dev" + version = "2.19.2" python_package_name = "pulp-container" def ready(self): diff --git a/setup.py b/setup.py index a5746748e..429d133c8 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.19.2.dev", + version="2.19.2", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",