From 24705356bf11811ebb18e5b91e82c1f1ae7083aa Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 12 Feb 2024 17:40:33 +0000 Subject: [PATCH] Release 0.5.0 --- .bumpversion.cfg | 2 +- CHANGES.rst | 27 +++++++++++++++++++++++++++ CHANGES/+bump_pulpcore.removal | 1 - CHANGES/209.bugfix | 1 - CHANGES/216.feature | 1 - docs/conf.py | 4 ++-- pulp_gem/app/__init__.py | 2 +- setup.py | 2 +- 8 files changed, 32 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/+bump_pulpcore.removal delete mode 100644 CHANGES/209.bugfix delete mode 100644 CHANGES/216.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a963c97d..dd2f02a0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0.dev +current_version = 0.5.0 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..1cf8192c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,33 @@ Changelog .. towncrier release notes start +0.5.0 (2024-02-12) +================== + +Features +-------- + +- Added replica definitions. + `#216 `__ + + +Bugfixes +-------- + +- Fixed a bug where legacy gems would cause an exception in pulpcore-content. + `#209 `__ + + +Deprecations and Removals +------------------------- + +- Bumped the requirement on pulpcore to >=3.39 as the next supported version in the line. + + + +---- + + 0.4.0 (2023-11-03) ================== diff --git a/CHANGES/+bump_pulpcore.removal b/CHANGES/+bump_pulpcore.removal deleted file mode 100644 index 6e33ae71..00000000 --- a/CHANGES/+bump_pulpcore.removal +++ /dev/null @@ -1 +0,0 @@ -Bumped the requirement on pulpcore to >=3.39 as the next supported version in the line. 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/CHANGES/216.feature b/CHANGES/216.feature deleted file mode 100644 index 8b24b3fc..00000000 --- a/CHANGES/216.feature +++ /dev/null @@ -1 +0,0 @@ -Added replica definitions. diff --git a/docs/conf.py b/docs/conf.py index f0b8f18e..3d8c8126 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "0.5.0.dev" +version = "0.5.0" # The full version, including alpha/beta/rc tags. -release = "0.5.0.dev" +release = "0.5.0" # 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 b837d83d..53a1c804 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.5.0.dev" + version = "0.5.0" python_package_name = "pulp-gem" domain_compatible = True diff --git a/setup.py b/setup.py index 35c75c0c..4c76d10b 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-gem", - version="0.5.0.dev", + version="0.5.0", description="Gemfile plugin for the Pulp Project", long_description=long_description, license="GPLv2+",