diff --git a/CHANGES.md b/CHANGES.md index 7fe7f3827a..4c93eae453 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,26 @@ [//]: # (towncrier release notes start) +## 3.49.30 (2025-01-08) {: #3.49.30 } + +### REST API {: #3.49.30-rest-api } + +No significant changes. + +### Plugin API {: #3.49.30-plugin-api } + +No significant changes. + +### Pulp File {: #3.49.30-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.49.30-pulp-cert-guard } + +No significant changes. + +--- + ## 3.49.29 (2024-12-18) {: #3.49.29 } ### REST API {: #3.49.29-rest-api } diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 671b9e441f..94756f3211 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.30.dev" + version = "3.49.30" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index cefc19a5df..af60242d03 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.30.dev" + version = "3.49.30" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 0bf0a410ca..79e9d943b4 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.30.dev" + version = "3.49.30" # The python package name providing this app python_package_name = "pulpcore" diff --git a/pyproject.toml b/pyproject.toml index 820134e192..9b797e4500 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.30.dev" +current_version = "3.49.30" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/setup.py b/setup.py index 53fbda00b0..fb9f5eb080 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.30.dev", + version="3.49.30", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",