diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 28b941fd4f..795ecb12c8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.28.34.dev +current_version = 3.28.34 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index f2b20d4c9b..2bffa97048 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,18 @@ [//]: # (towncrier release notes start) +## 3.28.34 (2024-11-13) {: #3.28.34 } + +### REST API {: #3.28.34-rest-api } + +No significant changes. + +### Plugin API {: #3.28.34-plugin-api } + +No significant changes. + +--- + ## 3.28.33 (2024-11-06) {: #3.28.33 } ### REST API {: #3.28.33-rest-api } diff --git a/docs/conf.py b/docs/conf.py index 6a6492e312..e5eb127a7c 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.28.34.dev" +version = "3.28.34" # The full version, including alpha/beta/rc tags. -release = "3.28.34.dev" +release = "3.28.34" # 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 adadf528bc..2e150f8adb 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -234,7 +234,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.28.34.dev" + version = "3.28.34" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 322e66f864..bf23ba05b6 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.28.34.dev", + version="3.28.34", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",