From 837a34dd6f65eb599d83faf3474dc7e7bfc640a6 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 10 Sep 2024 14:24:57 +0000 Subject: [PATCH] Release 3.60.0 --- .bumpversion.cfg | 2 +- CHANGES.md | 25 +++++++++++++++++++++++++ CHANGES/4602.feature | 1 - CHANGES/5693.feature | 1 - 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(+), 7 deletions(-) delete mode 100644 CHANGES/4602.feature delete mode 100644 CHANGES/5693.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8e2a53447a..559a796f37 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.60.0.dev +current_version = 3.60.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 7631311b78..43800b21f7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,31 @@ [//]: # (towncrier release notes start) +## 3.60.0 (2024-09-10) {: #3.60.0 } + +### REST API {: #3.60.0-rest-api } + +#### Features {: #3.60.0-rest-api-feature } + +- Added metrics reporting the size of served artifacts. + [#4602](https://github.com/pulp/pulpcore/issues/4602) +- Pulp-workers now also log domain name in which the task is executed. + [#5693](https://github.com/pulp/pulpcore/issues/5693) + +### Plugin API {: #3.60.0-plugin-api } + +No significant changes. + +### Pulp File {: #3.60.0-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.60.0-pulp-cert-guard } + +No significant changes. + +--- + ## 3.59.0 (2024-08-28) {: #3.59.0 } ### REST API {: #3.59.0-rest-api } diff --git a/CHANGES/4602.feature b/CHANGES/4602.feature deleted file mode 100644 index 1ec5d1c88e..0000000000 --- a/CHANGES/4602.feature +++ /dev/null @@ -1 +0,0 @@ -Added metrics reporting the size of served artifacts. diff --git a/CHANGES/5693.feature b/CHANGES/5693.feature deleted file mode 100644 index 70ec60012d..0000000000 --- a/CHANGES/5693.feature +++ /dev/null @@ -1 +0,0 @@ -Pulp-workers now also log domain name in which the task is executed. diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index ecf0a48179..c9aee7c087 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.60.0.dev" + version = "3.60.0" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 16a10bf46d..0d7553398c 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.60.0.dev" + version = "3.60.0" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 32700023ab..b974b4dd1f 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.60.0.dev" + version = "3.60.0" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 3063d23f0f..016c15b72b 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.60.0.dev", + version="3.60.0", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",