From f40134db8c265fa3abe2a333b96a4af5be0e8a9f Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 26 Jun 2024 13:04:02 +0000 Subject: [PATCH] Release 0.6.1 --- .bumpversion.cfg | 2 +- CHANGES.md | 9 +++++++++ CHANGES/+glue_version.bugfix | 1 - docs/conf.py | 4 ++-- pulp_gem/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/+glue_version.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 07277ae2..04f6e99e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1.dev +current_version = 0.6.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(1b)?(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index e3c50155..e7ff1189 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,15 @@ [//]: # (towncrier release notes start) +## 0.6.1 (2024-06-26) {: #0.6.1 } + + +#### Bugfixes {: #0.6.1-bugfix } + +- Allowed pulp-glue-gem version 0.5.* to be installed. + +--- + ## 0.6.0 (2024-06-19) {: #0.6.0 } diff --git a/CHANGES/+glue_version.bugfix b/CHANGES/+glue_version.bugfix deleted file mode 100644 index 29cf7fac..00000000 --- a/CHANGES/+glue_version.bugfix +++ /dev/null @@ -1 +0,0 @@ -Allowed pulp-glue-gem version 0.5.* to be installed. diff --git a/docs/conf.py b/docs/conf.py index 043bbb72..af118a5c 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "0.6.1.dev" +version = "0.6.1" # The full version, including alpha/beta/rc tags. -release = "0.6.1.dev" +release = "0.6.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 c3fdf296..004effee 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.6.1.dev" + version = "0.6.1" python_package_name = "pulp-gem" domain_compatible = True diff --git a/setup.py b/setup.py index d1b64264..da4184ce 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-gem", - version="0.6.1.dev", + version="0.6.1", description="Gemfile plugin for the Pulp Project", long_description=long_description, license="GPLv2+",