From 46c6619a9e1634724b60adc788338904e20a0245 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 21 Oct 2024 16:09:19 +0000 Subject: [PATCH] Release 3.26.3 --- .bumpversion.cfg | 2 +- CHANGES.md | 9 +++++++++ CHANGES/3639.bugfix | 1 - docs/conf.py | 4 ++-- pulp_rpm/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/3639.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5f840c4b1..dc3a93031 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.26.3.dev +current_version = 3.26.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index c87224246..c8b5e9534 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,15 @@ [//]: # (towncrier release notes start) +## 3.26.3 (2024-10-21) {: #3.26.3 } + +#### Bugfixes {: #3.26.3-bugfix } + +- Fixed the JSONField specification so it doesn't break ruby bindings. + [#3639](https://github.com/pulp/pulp_rpm/issues/3639) + +--- + ## 3.26.2 (2024-10-17) {: #3.26.2 } #### Bugfixes {: #3.26.2-bugfix } diff --git a/CHANGES/3639.bugfix b/CHANGES/3639.bugfix deleted file mode 100644 index c8d764475..000000000 --- a/CHANGES/3639.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed the JSONField specification so it doesn't break ruby bindings. diff --git a/docs/conf.py b/docs/conf.py index 0892adbb9..a0cb0df9b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = "3.26.3.dev" +version = "3.26.3" # The full version, including alpha/beta/rc tags. -release = "3.26.3.dev" +release = "3.26.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_rpm/app/__init__.py b/pulp_rpm/app/__init__.py index aa620bbda..6036f84b3 100644 --- a/pulp_rpm/app/__init__.py +++ b/pulp_rpm/app/__init__.py @@ -8,6 +8,6 @@ class PulpRpmPluginAppConfig(PulpPluginAppConfig): name = "pulp_rpm.app" label = "rpm" - version = "3.26.3.dev" + version = "3.26.3" python_package_name = "pulp-rpm" domain_compatible = True diff --git a/setup.py b/setup.py index 3adfacaaf..08b3c44cd 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-rpm", - version="3.26.3.dev", + version="3.26.3", description="RPM plugin for the Pulp Project", long_description=long_description, license="GPLv2+",