diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 270f400228..5e5cc6875a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.21.32.dev +current_version = 3.21.32 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index d5af36028f..610c44683b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,22 @@ [//]: # (towncrier release notes start) +## 3.21.32 (2024-07-16) {: #3.21.32 } + + +### REST API {: #3.21.32-rest-api } + +#### Bugfixes {: #3.21.32-rest-api-bugfix } + +- Browsable HREFs now have clickable links again. + [#5563](https://github.com/pulp/pulpcore/issues/5563) + +### Plugin API {: #3.21.32-plugin-api } + +No significant changes. + +--- + ## 3.21.31 (2024-06-24) {: #3.21.31 } diff --git a/CHANGES/5563.bugfix b/CHANGES/5563.bugfix deleted file mode 100644 index c30c686005..0000000000 --- a/CHANGES/5563.bugfix +++ /dev/null @@ -1 +0,0 @@ -Browsable HREFs now have clickable links again. diff --git a/docs/conf.py b/docs/conf.py index d804a18ad4..66f0e37165 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.21.32.dev" +version = "3.21.32" # The full version, including alpha/beta/rc tags. -release = "3.21.32.dev" +release = "3.21.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 c396baa369..aa2b7bc3a6 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -202,7 +202,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.21.32.dev" + version = "3.21.32" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index abc5b69002..21fd246769 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.21.32.dev", + version="3.21.32", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",