From 3dca91939bc7038670f40f61f4534e7946c02e19 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 27 Jun 2024 18:05:17 +0000 Subject: [PATCH] Release 3.12.1 --- .bumpversion.cfg | 2 +- CHANGES.md | 10 ++++++++++ CHANGES/691.bugfix | 1 - docs/conf.py | 4 ++-- pulp_python/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 15 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/691.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a194c747..e5586a53 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.12.1.dev +current_version = 3.12.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index a5a086ef..6c62f48c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,16 @@ [//]: # (towncrier release notes start) +## 3.12.1 (2024-06-27) {: #3.12.1 } + + +#### Bugfixes {: #3.12.1-bugfix } + +- Fixed the `package_types` filter breaking other remote filters. + [#691](https://github.com/pulp/pulp_python/issues/691) + +--- + ## 3.12.0 (2024-06-25) {: #3.12.0 } diff --git a/CHANGES/691.bugfix b/CHANGES/691.bugfix deleted file mode 100644 index 448af729..00000000 --- a/CHANGES/691.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed the `package_types` filter breaking other remote filters. diff --git a/docs/conf.py b/docs/conf.py index 02730996..9abbee0a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "3.12.1.dev" +version = "3.12.1" # The full version, including alpha/beta/rc tags. -release = "3.12.1.dev" +release = "3.12.1" # 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 9523fa43..c0a5fc1c 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.1.dev" + version = "3.12.1" python_package_name = "pulp-python" domain_compatible = True diff --git a/setup.py b/setup.py index 9d7687ec..0c27b715 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-python", - version="3.12.1.dev", + version="3.12.1", description="pulp-python plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",