diff --git a/CHANGES.md b/CHANGES.md index c4b8441e80..7fe7f3827a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,26 @@ [//]: # (towncrier release notes start) +## 3.49.29 (2024-12-18) {: #3.49.29 } + +### REST API {: #3.49.29-rest-api } + +No significant changes. + +### Plugin API {: #3.49.29-plugin-api } + +No significant changes. + +### Pulp File {: #3.49.29-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.49.29-pulp-cert-guard } + +No significant changes. + +--- + ## 3.49.28 (2024-12-13) {: #3.49.28 } ### REST API {: #3.49.28-rest-api } diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 93ac3fad7b..8f9fc72c45 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.29.dev" + version = "3.49.29" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 90016038d6..d33886d69f 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.29.dev" + version = "3.49.29" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index d5c73f2da2..d2a939fba2 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.29.dev" + version = "3.49.29" # The python package name providing this app python_package_name = "pulpcore" diff --git a/pyproject.toml b/pyproject.toml index fd1b673183..75de2b2467 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,7 @@ ignore = [ [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.49.29.dev" +current_version = "3.49.29" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/setup.py b/setup.py index 88f1de0115..dc40ddf4e6 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.29.dev", + version="3.49.29", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",