From 6329d5d9f31fc4c6c6440792b2a0eed8763f9212 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 31 Oct 2024 14:39:09 +0000 Subject: [PATCH] Release 0.15.6 --- .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 da8269382..71fd43fec 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.6.dev +current_version = 0.15.6 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 31f3fe83a..15de8b294 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,15 @@ [//]: # (towncrier release notes start) +## 0.15.6 (2024-10-31) {: #0.15.6 } + +#### Bugfixes {: #0.15.6-bugfix } + +- Fixed the JSONField specification so it doesn't break ruby bindings. + See context [here](https://github.com/pulp/pulp_rpm/issues/3639). + +--- + ## 0.15.5 (2024-05-15) {: #0.15.5 } #### Bugfixes 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 363321250..b2de71be4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = 'Pulp Ansible Team' # The short X.Y version -version = "0.15.6.dev" +version = "0.15.6" # The full version, including alpha/beta/rc tags -release = "0.15.6.dev" +release = "0.15.6" # -- General configuration --------------------------------------------------- diff --git a/pulp_ansible/app/__init__.py b/pulp_ansible/app/__init__.py index ed6916125..da0a6ec03 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.15.6.dev" + version = "0.15.6" python_package_name = "pulp-ansible" diff --git a/setup.py b/setup.py index ed3cc7c05..541316728 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ansible", - version="0.15.6.dev", + version="0.15.6", description="Pulp plugin to manage Ansible content, e.g. roles", long_description=long_description, license="GPLv2+",