From c2f48949e6215a587e8641c86b6ceae4fe25e130 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 26 Aug 2024 19:58:49 +0000 Subject: [PATCH] Release 3.12.3 --- .bumpversion.cfg | 2 +- CHANGES.md | 9 +++++++++ CHANGES/682.bugfix | 1 - docs/conf.py | 4 ++-- pulp_python/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/682.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2b0e01bd..1631393d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.12.3.dev +current_version = 3.12.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 2c5ad58e..70e510b1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,15 @@ [//]: # (towncrier release notes start) +## 3.12.3 (2024-08-26) {: #3.12.3 } + +#### Bugfixes {: #3.12.3-bugfix } + +- Fixed uploads not supporting packages using metadata spec 2.3 + [#682](https://github.com/pulp/pulp_python/issues/682) + +--- + # ## 3.12.2 (2024-08-21) {: #3.12.2 } #### Bugfixes {: #3.12.2-bugfix } diff --git a/CHANGES/682.bugfix b/CHANGES/682.bugfix deleted file mode 100644 index 4bf3e5b5..00000000 --- a/CHANGES/682.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed uploads not supporting packages using metadata spec 2.3 diff --git a/docs/conf.py b/docs/conf.py index de3a8375..4392ba7d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "3.12.3.dev" +version = "3.12.3" # The full version, including alpha/beta/rc tags. -release = "3.12.3.dev" +release = "3.12.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index 75858543..610dec0f 100644 --- a/pulp_python/app/__init__.py +++ b/pulp_python/app/__init__.py @@ -10,7 +10,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig): name = "pulp_python.app" label = "python" - version = "3.12.3.dev" + version = "3.12.3" python_package_name = "pulp-python" domain_compatible = True diff --git a/setup.py b/setup.py index d124aad4..17829503 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-python", - version="3.12.3.dev", + version="3.12.3", description="pulp-python plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",