diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2ef97b79c..641ec6a6f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.16.dev +current_version = 2.14.16 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 139672664..4a6b9a293 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,13 @@ [//]: # (towncrier release notes start) +## 2.14.16 (2024-07-24) {: #2.14.16 } + + +No significant changes. + +--- + ## 2.14.15 (2024-07-09) {: #2.14.15 } diff --git a/docs/conf.py b/docs/conf.py index c2fb42d46..7f9de376d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = "2.14.16.dev" +version = "2.14.16" # The full version, including alpha/beta/rc tags. -release = "2.14.16.dev" +release = "2.14.16" # 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 bd90837a8..94eb0f715 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -6,5 +6,5 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.14.16.dev" + version = "2.14.16" python_package_name = "pulp-container" diff --git a/setup.py b/setup.py index e6976bd35..234dc4912 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.14.16.dev", + version="2.14.16", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",