diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6e6ecac2a7..c8e18aab9a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.22.32.dev +current_version = 3.22.32 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index cd30b94f04..9a50951766 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,21 @@ [//]: # (towncrier release notes start) +## 3.22.32 (2024-11-06) {: #3.22.32 } + +### REST API {: #3.22.32-rest-api } + +#### Bugfixes {: #3.22.32-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.22.32-plugin-api } + +No significant changes. + +--- + ## 3.22.31 (2024-10-01) {: #3.22.31 } ### REST API {: #3.22.31-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 c5a9fdb957..5d267d0a6a 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.22.32.dev" +version = "3.22.32" # The full version, including alpha/beta/rc tags. -release = "3.22.32.dev" +release = "3.22.32" # 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 3b1bf6408d..a46964137e 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -207,7 +207,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.22.32.dev" + version = "3.22.32" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 9a920dc871..017a6d683c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.22.32.dev", + version="3.22.32", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",