From 77a8bcc01ce82ac868c54bdceb2633b740345416 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 2 Jul 2024 18:26:02 +0000 Subject: [PATCH] Release 3.49.13 --- .bumpversion.cfg | 2 +- CHANGES.md | 24 ++++++++++++++++++++++++ CHANGES/5306.bugfix | 1 - docs/conf.py | 4 ++-- pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 8 files changed, 31 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/5306.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0a1099a91e..ff13d0ec26 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.49.13.dev +current_version = 3.49.13 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index b1ce58fd4f..63d9315a90 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,30 @@ [//]: # (towncrier release notes start) +## 3.49.13 (2024-07-02) {: #3.49.13 } + + +### REST API {: #3.49.13-rest-api } + +#### Bugfixes {: #3.49.13-rest-api-bugfix } + +- Update jquery version from 3.5.1 to 3.7.1 in API.html template + [#5306](https://github.com/pulp/pulpcore/issues/5306) + +### Plugin API {: #3.49.13-plugin-api } + +No significant changes. + +### Pulp File {: #3.49.13-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.49.13-pulp-cert-guard } + +No significant changes. + +--- + ## 3.49.12 (2024-06-24) {: #3.49.12 } diff --git a/CHANGES/5306.bugfix b/CHANGES/5306.bugfix deleted file mode 100644 index eef06ce786..0000000000 --- a/CHANGES/5306.bugfix +++ /dev/null @@ -1 +0,0 @@ -Update jquery version from 3.5.1 to 3.7.1 in API.html template diff --git a/docs/conf.py b/docs/conf.py index ae62853e0b..1bf11b419d 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.49.13.dev" +version = "3.49.13" # The full version, including alpha/beta/rc tags. -release = "3.49.13.dev" +release = "3.49.13" # 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 293ebf2da2..cbdce6324b 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.13.dev" + version = "3.49.13" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 0cfa152479..47c865fb82 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.13.dev" + version = "3.49.13" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 9113dd39ed..634134d006 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.13.dev" + version = "3.49.13" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 7853f535e2..47e4bf648e 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.13.dev", + version="3.49.13", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",