From 77cb0bbb50c91a64a9dbe8466586eafd8187b3ea Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 25 Jul 2024 17:43:07 +0000 Subject: [PATCH] Release 2.20.1 --- .bumpversion.cfg | 2 +- CHANGES.md | 11 +++++++++++ CHANGES/1703.bugfix | 2 -- docs/conf.py | 4 ++-- pulp_container/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/1703.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 25aa4a5e2..279a1730a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.20.1.dev +current_version = 2.20.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 3414e542e..292863560 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,17 @@ [//]: # (towncrier release notes start) +## 2.20.1 (2024-07-25) {: #2.20.1 } + + +#### Bugfixes {: #2.20.1-bugfix } + +- Fixed an issue causing an HTTP 500 error when a GET request for a non-existing + blob was made to a distribution with only a `repository_version` set. + [#1703](https://github.com/pulp/pulp_container/issues/1703) + +--- + ## 2.20.0 (2024-05-06) {: #2.20.0 } ### Features diff --git a/CHANGES/1703.bugfix b/CHANGES/1703.bugfix deleted file mode 100644 index 231a3c156..000000000 --- a/CHANGES/1703.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed an issue causing an HTTP 500 error when a GET request for a non-existing -blob was made to a distribution with only a `repository_version` set. diff --git a/docs/conf.py b/docs/conf.py index ae40565f6..00cc1de45 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.20.1.dev" +version = "2.20.1" # The full version, including alpha/beta/rc tags. -release = "2.20.1.dev" +release = "2.20.1" # 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 0fc96d9c9..7baf6a917 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.20.1.dev" + version = "2.20.1" python_package_name = "pulp-container" def ready(self): diff --git a/setup.py b/setup.py index 7e0c88b97..c3ee7ef02 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.20.1.dev", + version="2.20.1", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",