From 962f79b1a26e7064365f6896bade29c86b66d426 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 16 Sep 2024 19:33:11 +0000 Subject: [PATCH] Release 3.39.21 --- .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 7936df2999..dd3370b911 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.39.21.dev +current_version = 3.39.21 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index ad7124863c..525f93f389 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,18 @@ [//]: # (towncrier release notes start) +## 3.39.21 (2024-09-16) {: #3.39.21 } + +### REST API {: #3.39.21-rest-api } + +No significant changes. + +### Plugin API {: #3.39.21-plugin-api } + +No significant changes. + +--- + # ## 3.39.20 (2024-08-10) {: #3.39.20 } ### REST API {: #3.39.20-rest-api } diff --git a/docs/conf.py b/docs/conf.py index 40dbe306ee..c6e9a1ced0 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.39.21.dev" +version = "3.39.21" # The full version, including alpha/beta/rc tags. -release = "3.39.21.dev" +release = "3.39.21" # 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 c493ebcb9c..63de5eea2b 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.21.dev" + version = "3.39.21" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 7696732fbc..43116cb140 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.39.21.dev", + version="3.39.21", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",