From 1a62b03b375db1ffb4194cb5e8b56b15d32d2e5b Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 6 Nov 2024 17:03:00 +0000 Subject: [PATCH] Release 3.39.22 --- .bumpversion.cfg | 2 +- CHANGES.md | 15 +++++++++++++++ CHANGES/+fix-any-type.bugfix | 2 -- docs/conf.py | 4 ++-- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 6 files changed, 20 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/+fix-any-type.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6c044b1433..5313e1a7e6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.39.22.dev +current_version = 3.39.22 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 525f93f389..4ff8626ce6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,21 @@ [//]: # (towncrier release notes start) +## 3.39.22 (2024-11-06) {: #3.39.22 } + +### REST API {: #3.39.22-rest-api } + +#### Bugfixes {: #3.39.22-rest-api-bugfix } + +- Fixed the JSONField specification so it doesn't break ruby bindings. + See context [here](https://github.com/pulp/pulp_rpm/issues/3639). + +### Plugin API {: #3.39.22-plugin-api } + +No significant changes. + +--- + ## 3.39.21 (2024-09-16) {: #3.39.21 } ### REST API {: #3.39.21-rest-api } diff --git a/CHANGES/+fix-any-type.bugfix b/CHANGES/+fix-any-type.bugfix deleted file mode 100644 index 89ea25f511..0000000000 --- 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 81b8935d82..cf68f40ca1 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.39.22.dev" +version = "3.39.22" # The full version, including alpha/beta/rc tags. -release = "3.39.22.dev" +release = "3.39.22" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index d352738e46..c95249d056 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.39.22.dev" + version = "3.39.22" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 2a56f1afef..b146ebf266 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.39.22.dev", + version="3.39.22", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",