From 3cb15440bc799487a80dc450735e3a72464b0c48 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 18 Jun 2024 18:23:57 +0000 Subject: [PATCH] Release 3.49.11 --- .bumpversion.cfg | 2 +- CHANGES.md | 29 +++++++++++++++++++++++++++++ CHANGES/5462.misc | 1 - CHANGES/5464.bugfix | 2 -- docs/conf.py | 4 ++-- pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 9 files changed, 36 insertions(+), 10 deletions(-) delete mode 100644 CHANGES/5462.misc delete mode 100644 CHANGES/5464.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1a3feb0e5c..5f6cca74f8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.49.11.dev +current_version = 3.49.11 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 7e49884564..d319df9cf4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,35 @@ [//]: # (towncrier release notes start) +## 3.49.11 (2024-06-18) {: #3.49.11 } + + +### REST API {: #3.49.11-rest-api } + +#### Bugfixes {: #3.49.11-rest-api-bugfix } + +- Pulpcore no longer assumes that every plugin implementing the Replication feature supports + Publications. + [#5464](https://github.com/pulp/pulpcore/issues/5464) + +#### Misc {: #3.49.11-rest-api-misc } + +- [#5462](https://github.com/pulp/pulpcore/issues/5462) + +### Plugin API {: #3.49.11-plugin-api } + +No significant changes. + +### Pulp File {: #3.49.11-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.49.11-pulp-cert-guard } + +No significant changes. + +--- + ## 3.49.10 (2024-05-23) {: #3.49.10 } ### REST API diff --git a/CHANGES/5462.misc b/CHANGES/5462.misc deleted file mode 100644 index 4c9c0ed9a2..0000000000 --- a/CHANGES/5462.misc +++ /dev/null @@ -1 +0,0 @@ -Add `pulpcore-manager openapi` command to help generate `api.json` for bindings. diff --git a/CHANGES/5464.bugfix b/CHANGES/5464.bugfix deleted file mode 100644 index cc4669cf25..0000000000 --- a/CHANGES/5464.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Pulpcore no longer assumes that every plugin implementing the Replication feature supports -Publications. diff --git a/docs/conf.py b/docs/conf.py index 9ccb5c8f16..617327b984 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.49.11.dev" +version = "3.49.11" # The full version, including alpha/beta/rc tags. -release = "3.49.11.dev" +release = "3.49.11" # 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 37f6d8e1d1..7a7465fb0d 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.11.dev" + version = "3.49.11" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 6d756085e1..c19ecd5151 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.11.dev" + version = "3.49.11" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 5aa6b93728..a48be58f83 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.11.dev" + version = "3.49.11" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 6001bd9574..490017eae0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.11.dev", + version="3.49.11", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",