From 87fed6668cc02aa42a65617387059b89aeda1da4 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 13 Nov 2024 21:13:18 +0000 Subject: [PATCH] Release 3.22.33 --- .bumpversion.cfg | 2 +- CHANGES.md | 12 ++++++++++++ docs/conf.py | 4 ++-- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 86b9978ffb..e165d5b06a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.22.33.dev +current_version = 3.22.33 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 9a50951766..64ac977369 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,18 @@ [//]: # (towncrier release notes start) +## 3.22.33 (2024-11-13) {: #3.22.33 } + +### REST API {: #3.22.33-rest-api } + +No significant changes. + +### Plugin API {: #3.22.33-plugin-api } + +No significant changes. + +--- + ## 3.22.32 (2024-11-06) {: #3.22.32 } ### REST API {: #3.22.32-rest-api } diff --git a/docs/conf.py b/docs/conf.py index 2bef11461a..3e9bd18012 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.22.33.dev" +version = "3.22.33" # The full version, including alpha/beta/rc tags. -release = "3.22.33.dev" +release = "3.22.33" # 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 ca96a27a23..c6dd8734ea 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.33.dev" + version = "3.22.33" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index c10633a327..4dcf5dec9a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.22.33.dev", + version="3.22.33", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",