From 68b7e1e08503b72aee7b97a90410fa18b6a4bb82 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 27 Mar 2024 19:54:55 +0000 Subject: [PATCH] Release 3.49.3 --- .bumpversion.cfg | 2 +- CHANGES.rst | 33 +++++++++++++++++++++++++++++++++ CHANGES/5189.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, 40 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/5189.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6252dc9848..621c06fa75 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.49.3.dev +current_version = 3.49.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 183c94e395..240ce3bb33 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,39 @@ Changelog .. towncrier release notes start +3.49.3 (2024-03-27) +=================== +REST API +-------- + +Bugfixes +~~~~~~~~ + +- Fix import in wsgi preventing startup. + :github:`5189` + + +Plugin API +---------- + +No significant changes. + + +Pulp File +--------- + +No significant changes. + + +Pulp Cert Guard +--------------- + +No significant changes. + + +---- + + 3.49.2 (2024-03-26) =================== REST API diff --git a/CHANGES/5189.bugfix b/CHANGES/5189.bugfix deleted file mode 100644 index 506f7f634b..0000000000 --- a/CHANGES/5189.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix import in wsgi preventing startup. diff --git a/docs/conf.py b/docs/conf.py index cdcb658612..50e29333b0 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,9 +75,9 @@ # built documents. # # The short X.Y version. -version = "3.49.3.dev" +version = "3.49.3" # The full version, including alpha/beta/rc tags. -release = "3.49.3.dev" +release = "3.49.3" # 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 571315ebee..7db1c98ce2 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.3.dev" + version = "3.49.3" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 147b5c89a4..5fe6445a7f 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.3.dev" + version = "3.49.3" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index f40c9edfdb..ad75f8c845 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.3.dev" + version = "3.49.3" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 3687d2a5b8..97668a7f04 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.49.3.dev", + version="3.49.3", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",