diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 67b987b66..c986d3204 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.14.dev +current_version = 2.14.14 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 2a0f2515e..a5800e1c8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,13 @@ [//]: # (towncrier release notes start) +## 2.14.14 (2024-06-20) {: #2.14.14 } + + +No significant changes. + +--- + ## 2.14.13 (2024-03-15) {: #2.14.13 } ### Bugfixes diff --git a/docs/conf.py b/docs/conf.py index 00b2d4021..814d24811 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = "2.14.14.dev" +version = "2.14.14" # The full version, including alpha/beta/rc tags. -release = "2.14.14.dev" +release = "2.14.14" # 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 5c373f6f2..1282ae8e8 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.14.dev" + version = "2.14.14" python_package_name = "pulp-container" diff --git a/setup.py b/setup.py index 46145ede0..9257006f4 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.14.14.dev", + version="2.14.14", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",