From b3ae8d6f85dd8d26b59b7b246c804ab7ee971f60 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 22 Jul 2024 14:12:58 +0000 Subject: [PATCH] Release 0.21.7 --- .bumpversion.cfg | 2 +- CHANGES.md | 11 +++++++++++ CHANGES/+openapi.bugfix | 1 - CHANGES/1921.bugfix | 1 - docs/conf.py | 4 ++-- pulp_ansible/app/__init__.py | 2 +- setup.py | 2 +- 7 files changed, 16 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/+openapi.bugfix delete mode 100644 CHANGES/1921.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3eee9ba6b..ebd91462a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.21.7.dev +current_version = 0.21.7 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 064e4b77c..7a0eda21d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,17 @@ [//]: # (towncrier release notes start) +## 0.21.7 (2024-07-22) {: #0.21.7 } + + +#### Bugfixes {: #0.21.7-bugfix } + +- Cast the content object to a collectionversion before setting the rebuild metadata. + [#1921](https://github.com/pulp/pulp_ansible/issues/1921) +- Fixed the openapi spec for the collection version search. + +--- + ## 0.21.6 (2024-05-29) {: #0.21.6 } ### Bugfixes diff --git a/CHANGES/+openapi.bugfix b/CHANGES/+openapi.bugfix deleted file mode 100644 index b5c339510..000000000 --- a/CHANGES/+openapi.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed the openapi spec for the collection version search. diff --git a/CHANGES/1921.bugfix b/CHANGES/1921.bugfix deleted file mode 100644 index e26280d78..000000000 --- a/CHANGES/1921.bugfix +++ /dev/null @@ -1 +0,0 @@ -Cast the content object to a collectionversion before setting the rebuild metadata. diff --git a/docs/conf.py b/docs/conf.py index 2adb2d8d1..0a46c334e 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "0.21.7.dev" +version = "0.21.7" # The full version, including alpha/beta/rc tags. -release = "0.21.7.dev" +release = "0.21.7" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_ansible/app/__init__.py b/pulp_ansible/app/__init__.py index 29acc4435..9d0b1550c 100644 --- a/pulp_ansible/app/__init__.py +++ b/pulp_ansible/app/__init__.py @@ -8,5 +8,5 @@ class PulpAnsiblePluginAppConfig(PulpPluginAppConfig): name = "pulp_ansible.app" label = "ansible" - version = "0.21.7.dev" + version = "0.21.7" python_package_name = "pulp-ansible" diff --git a/setup.py b/setup.py index bb1abe5ac..5dfe864ce 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ansible", - version="0.21.7.dev", + version="0.21.7", description="Pulp plugin to manage Ansible content, e.g. roles", long_description=long_description, license="GPLv2+",