From 67f41ac0edc3403c89673e703e8149bb70996e2f Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 17 Oct 2024 14:09:15 +0000 Subject: [PATCH] Release 3.49.22 --- .bumpversion.cfg | 2 +- CHANGES.md | 23 +++++++++++++++++++++++ CHANGES/5911.bugfix | 1 - docs/conf.py | 4 ++-- pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 8 files changed, 30 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/5911.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f86343e41b..09515a7276 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.49.22.dev +current_version = 3.49.22 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index ec122ab141..e10d14072c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,29 @@ [//]: # (towncrier release notes start) +## 3.49.22 (2024-10-17) {: #3.49.22 } + +### REST API {: #3.49.22-rest-api } + +#### Bugfixes {: #3.49.22-rest-api-bugfix } + +- pass envvars to Signing Scripts to access GNUPGHOME + [#5911](https://github.com/pulp/pulpcore/issues/5911) + +### Plugin API {: #3.49.22-plugin-api } + +No significant changes. + +### Pulp File {: #3.49.22-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.49.22-pulp-cert-guard } + +No significant changes. + +--- + ## 3.49.21 (2024-10-09) {: #3.49.21 } ### REST API {: #3.49.21-rest-api } diff --git a/CHANGES/5911.bugfix b/CHANGES/5911.bugfix deleted file mode 100644 index 62612a6481..0000000000 --- a/CHANGES/5911.bugfix +++ /dev/null @@ -1 +0,0 @@ -pass envvars to Signing Scripts to access GNUPGHOME diff --git a/docs/conf.py b/docs/conf.py index 69bdfd9a26..18d3e84211 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.49.22.dev" +version = "3.49.22" # The full version, including alpha/beta/rc tags. -release = "3.49.22.dev" +release = "3.49.22" # 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 5a8e4fb525..18570ad939 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.22.dev" + version = "3.49.22" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 94a681ac75..a9087c3406 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.22.dev" + version = "3.49.22" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index b06aa5e01a..0f04b8745c 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.22.dev" + version = "3.49.22" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 59b769ace5..5d7b22fdab 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.22.dev", + version="3.49.22", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",