diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9e4fffc7c..aba0b0867 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.11.dev +current_version = 2.14.11 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 543a9ef72..3104003da 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +2.14.11 (2024-01-30) +==================== + +Bugfixes +-------- + +- Disabled TLS validation, if opted out in a remote, when syncing signatures. + `#1305 `__ + + +---- + + 2.14.10 (2024-01-15) ==================== diff --git a/CHANGES/1305.bugfix b/CHANGES/1305.bugfix deleted file mode 100644 index 0a0efdeab..000000000 --- a/CHANGES/1305.bugfix +++ /dev/null @@ -1 +0,0 @@ -Disabled TLS validation, if opted out in a remote, when syncing signatures. diff --git a/docs/conf.py b/docs/conf.py index 5e6b99b1c..5ab828d92 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = "2.14.11.dev" +version = "2.14.11" # The full version, including alpha/beta/rc tags. -release = "2.14.11.dev" +release = "2.14.11" # 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 d38a0cfa4..b8dc45833 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.11.dev" + version = "2.14.11" python_package_name = "pulp-container" diff --git a/setup.py b/setup.py index 47bb955b0..bad7b48a4 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.14.11.dev", + version="2.14.11", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",