diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0f3f6d1bb..0ab151d5c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.20.3.dev +current_version = 2.20.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index f84b19611..e0fcf623b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,16 @@ [//]: # (towncrier release notes start) +## 2.20.3 (2024-08-27) {: #2.20.3 } + +#### Bugfixes {: #2.20.3-bugfix } + +- Resolved an issue with syncing content causing errors when retrieving manifests without a mediaType + definition. + [#1746](https://github.com/pulp/pulp_container/issues/1746) + +--- + ## 2.20.2 (2024-07-26) {: #2.20.2 } diff --git a/CHANGES/1746.bugfix b/CHANGES/1746.bugfix deleted file mode 100644 index 4c2d7f70e..000000000 --- a/CHANGES/1746.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Resolved an issue with syncing content causing errors when retrieving manifests without a mediaType -definition. diff --git a/docs/conf.py b/docs/conf.py index cd47be65b..454cb31a3 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.20.3.dev" +version = "2.20.3" # The full version, including alpha/beta/rc tags. -release = "2.20.3.dev" +release = "2.20.3" # 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 3ee3b32da..820536bfa 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.3.dev" + version = "2.20.3" python_package_name = "pulp-container" def ready(self): diff --git a/setup.py b/setup.py index 7ddec29e6..f1f5cd415 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.20.3.dev", + version="2.20.3", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",