From 4f6f33f05d43e918f446e12b89a2d1c07e436c32 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Fri, 13 Dec 2024 14:35:29 +0000 Subject: [PATCH] Release 3.63.6 --- CHANGES.md | 20 ++++++++++++++++++++ pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 6 files changed, 25 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d2b85e817c..989cf0583b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,26 @@ [//]: # (towncrier release notes start) +## 3.63.6 (2024-12-13) {: #3.63.6 } + +### REST API {: #3.63.6-rest-api } + +No significant changes. + +### Plugin API {: #3.63.6-plugin-api } + +No significant changes. + +### Pulp File {: #3.63.6-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.63.6-pulp-cert-guard } + +No significant changes. + +--- + ## 3.63.5 (2024-12-11) {: #3.63.5 } ### REST API {: #3.63.5-rest-api } diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index b0854d731b..6dfad9365b 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.63.6.dev" + version = "3.63.6" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 3ea847f388..6def0f721d 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.63.6.dev" + version = "3.63.6" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index f817ad4a67..3627fd086c 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.63.6.dev" + version = "3.63.6" # The python package name providing this app python_package_name = "pulpcore" diff --git a/pyproject.toml b/pyproject.toml index 6bbde2e2da..439c1a166c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ ignore = [ [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.63.6.dev" +current_version = "3.63.6" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/setup.py b/setup.py index 3a3a0d9029..747eb665c7 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.63.6.dev", + version="3.63.6", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",