diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6b445f6..f5d7b20 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0.dev +current_version = 0.6.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(1b)?(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index b079d89..e3c5015 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,20 @@ [//]: # (towncrier release notes start) +## 0.6.0 (2024-06-19) {: #0.6.0 } + + +#### Deprecations and Removals {: #0.6.0-removal } + +- Bumped miminal pulpcore requirement to 3.49.0. +- Droped support for python 3.8. + +#### Misc {: #0.6.0-misc } + +- + +--- + ## 0.5.1 (2024-05-23) {: #0.5.1 } ### Bugfixes diff --git a/CHANGES/+drop_python38.removal b/CHANGES/+drop_python38.removal deleted file mode 100644 index 5c0086b..0000000 --- a/CHANGES/+drop_python38.removal +++ /dev/null @@ -1 +0,0 @@ -Droped support for python 3.8. diff --git a/CHANGES/+new-docs-ci.misc b/CHANGES/+new-docs-ci.misc deleted file mode 100644 index 91a1571..0000000 --- a/CHANGES/+new-docs-ci.misc +++ /dev/null @@ -1 +0,0 @@ -Added the Unified Docs CI build-check on PRs. diff --git a/CHANGES/+pulpcore.removal b/CHANGES/+pulpcore.removal deleted file mode 100644 index dac7057..0000000 --- a/CHANGES/+pulpcore.removal +++ /dev/null @@ -1 +0,0 @@ -Bumped miminal pulpcore requirement to 3.49.0. diff --git a/docs/conf.py b/docs/conf.py index f4eb24d..3c14b56 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "0.6.0.dev" +version = "0.6.0" # The full version, including alpha/beta/rc tags. -release = "0.6.0.dev" +release = "0.6.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 b946b54..8387df9 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.0.dev" + version = "0.6.0" python_package_name = "pulp-gem" domain_compatible = True diff --git a/setup.py b/setup.py index 4d5fdab..7687775 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-gem", - version="0.6.0.dev", + version="0.6.0", description="Gemfile plugin for the Pulp Project", long_description=long_description, license="GPLv2+",