From 91dcda1f0876498b6d0ab6952d91ec7bf8d527cd Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 31 Oct 2024 14:39:03 +0000 Subject: [PATCH] Release 0.16.5 --- .bumpversion.cfg | 2 +- CHANGES.md | 9 +++++++++ CHANGES/+fix-any-type.bugfix | 2 -- docs/conf.py | 4 ++-- pulp_ansible/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 14 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/+fix-any-type.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1f4083e54..82ededefd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.16.5.dev +current_version = 0.16.5 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 3e23fc198..29d245fcd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,15 @@ [//]: # (towncrier release notes start) +## 0.16.5 (2024-10-31) {: #0.16.5 } + +#### Bugfixes {: #0.16.5-bugfix } + +- Fixed the JSONField specification so it doesn't break ruby bindings. + See context [here](https://github.com/pulp/pulp_rpm/issues/3639). + +--- + ## 0.16.4 (2024-09-25) {: #0.16.4 } #### Bugfixes {: #0.16.4-bugfix } diff --git a/CHANGES/+fix-any-type.bugfix b/CHANGES/+fix-any-type.bugfix deleted file mode 100644 index 89ea25f51..000000000 --- a/CHANGES/+fix-any-type.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed the JSONField specification so it doesn't break ruby bindings. -See context [here](https://github.com/pulp/pulp_rpm/issues/3639). diff --git a/docs/conf.py b/docs/conf.py index d1c60a01c..ba0e09fd6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = 'Pulp Ansible Team' # The short X.Y version -version = "0.16.5.dev" +version = "0.16.5" # The full version, including alpha/beta/rc tags -release = "0.16.5.dev" +release = "0.16.5" # -- General configuration --------------------------------------------------- diff --git a/pulp_ansible/app/__init__.py b/pulp_ansible/app/__init__.py index 01dfbeb8f..f867fb962 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.16.5.dev" + version = "0.16.5" python_package_name = "pulp-ansible" diff --git a/setup.py b/setup.py index e50e1dded..461e712ec 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ansible", - version="0.16.5.dev", + version="0.16.5", description="Pulp plugin to manage Ansible content, e.g. roles", long_description=long_description, license="GPLv2+",