From 202b64e065ac458759ac60857b1b41c3cfbe3ff2 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 11 Apr 2024 21:28:29 +0000 Subject: [PATCH] Release 3.11.1 --- .bumpversion.cfg | 2 +- CHANGES.rst | 13 +++++++++++++ CHANGES/653.bugfix | 1 - docs/conf.py | 4 ++-- pulp_python/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 18 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/653.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d0ce3af6..0804a7e3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.11.1.dev +current_version = 3.11.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index bb2afffc..1e38e617 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +3.11.1 (2024-04-11) +=================== + +Bugfixes +-------- + +- Fixed tls_validation not being disabled when set to false on the remote. + `#653 `__ + + +---- + + 3.11.0 (2023-11-08) =================== diff --git a/CHANGES/653.bugfix b/CHANGES/653.bugfix deleted file mode 100644 index 6040d64f..00000000 --- a/CHANGES/653.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed tls_validation not being disabled when set to false on the remote. diff --git a/docs/conf.py b/docs/conf.py index 1be52760..accfc276 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "3.11.1.dev" +version = "3.11.1" # The full version, including alpha/beta/rc tags. -release = "3.11.1.dev" +release = "3.11.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index 576b80ab..4f089f12 100644 --- a/pulp_python/app/__init__.py +++ b/pulp_python/app/__init__.py @@ -8,5 +8,5 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig): name = "pulp_python.app" label = "python" - version = "3.11.1.dev" + version = "3.11.1" python_package_name = "pulp-python" diff --git a/setup.py b/setup.py index 16287f31..a14d11f8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-python", - version="3.11.1.dev", + version="3.11.1", description="pulp-python plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",