diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 250c651026..4f383af743 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.49.20.dev +current_version = 3.49.20 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 62870409e1..767c3c043b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,26 @@ [//]: # (towncrier release notes start) +## 3.49.20 (2024-09-18) {: #3.49.20 } + +### REST API {: #3.49.20-rest-api } + +No significant changes. + +### Plugin API {: #3.49.20-plugin-api } + +No significant changes. + +### Pulp File {: #3.49.20-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.49.20-pulp-cert-guard } + +No significant changes. + +--- + ## 3.49.19 (2024-09-03) {: #3.49.19 } ### REST API {: #3.49.19-rest-api } diff --git a/docs/conf.py b/docs/conf.py index 686e45e44e..5f1ba58a52 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.49.20.dev" +version = "3.49.20" # The full version, including alpha/beta/rc tags. -release = "3.49.20.dev" +release = "3.49.20" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 9e1723b5bd..446c7d091b 100644 --- a/pulp_certguard/app/__init__.py +++ b/pulp_certguard/app/__init__.py @@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig): name = "pulp_certguard.app" label = "certguard" - version = "3.49.20.dev" + version = "3.49.20" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 2997bdb72e..934ff94ef6 100644 --- a/pulp_file/app/__init__.py +++ b/pulp_file/app/__init__.py @@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig): name = "pulp_file.app" label = "file" - version = "3.49.20.dev" + version = "3.49.20" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 1609c2e5ce..ed76994c61 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.49.20.dev" + version = "3.49.20" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 07dc64bdcb..d868126480 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.20.dev", + version="3.49.20", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",