From 62b3413a48ea5b57417b0aacfd59a08a26156d00 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 12 Feb 2024 16:09:10 +0000 Subject: [PATCH] Release 0.4.1 --- .bumpversion.cfg | 2 +- CHANGES.rst | 13 +++++++++++++ CHANGES/209.bugfix | 1 - docs/conf.py | 4 ++-- pulp_gem/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 18 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/209.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 67e937d0..962ad474 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1.dev +current_version = 0.4.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(1b)?(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 4b8e8558..6d372d59 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +0.4.1 (2024-02-12) +================== + +Bugfixes +-------- + +- Fixed a bug where legacy gems would cause an exception in pulpcore-content. + `#209 `__ + + +---- + + 0.4.0 (2023-11-03) ================== diff --git a/CHANGES/209.bugfix b/CHANGES/209.bugfix deleted file mode 100644 index 18b10f37..00000000 --- a/CHANGES/209.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where legacy gems would cause an exception in pulpcore-content. diff --git a/docs/conf.py b/docs/conf.py index 53befd77..e404ea64 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "0.4.1.dev" +version = "0.4.1" # The full version, including alpha/beta/rc tags. -release = "0.4.1.dev" +release = "0.4.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_gem/app/__init__.py b/pulp_gem/app/__init__.py index b0ffc339..6b348d86 100644 --- a/pulp_gem/app/__init__.py +++ b/pulp_gem/app/__init__.py @@ -6,6 +6,6 @@ class PulpGemPluginAppConfig(PulpPluginAppConfig): name = "pulp_gem.app" label = "gem" - version = "0.4.1.dev" + version = "0.4.1" python_package_name = "pulp-gem" domain_compatible = True diff --git a/setup.py b/setup.py index 89117493..3f8609d6 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-gem", - version="0.4.1.dev", + version="0.4.1", description="Gemfile plugin for the Pulp Project", long_description=long_description, license="GPLv2+",