From 428c12a6ef8626657837ed0581a3ab733697e30e Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 29 Feb 2024 10:25:50 +0000 Subject: [PATCH] Release 3.0.2 --- .bumpversion.cfg | 2 +- CHANGES.rst | 15 +++++++++++++++ CHANGES/1019.bugfix | 1 - CHANGES/994.bugfix | 1 - docs/conf.py | 4 ++-- pulp_deb/app/__init__.py | 2 +- setup.py | 2 +- 7 files changed, 20 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/1019.bugfix delete mode 100644 CHANGES/994.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4a689c143..bce0d8d24 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.2.dev +current_version = 3.0.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 2326a9bbf..c38e2173d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,21 @@ Changelog .. towncrier release notes start +3.0.2 (2024-02-29) +================== + +Bugfixes +-------- + +- Fixed DEBUG logging of prohibited duplicate packages. + `#994 `_ +- Suppressed deb822's confusing log warning about python-apt not being installed. + `#1019 `_ + + +---- + + 3.0.1 (2023-12-12) ================== diff --git a/CHANGES/1019.bugfix b/CHANGES/1019.bugfix deleted file mode 100644 index ce0b17303..000000000 --- a/CHANGES/1019.bugfix +++ /dev/null @@ -1 +0,0 @@ -Suppressed deb822's confusing log warning about python-apt not being installed. diff --git a/CHANGES/994.bugfix b/CHANGES/994.bugfix deleted file mode 100644 index ca062bb4e..000000000 --- a/CHANGES/994.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed DEBUG logging of prohibited duplicate packages. diff --git a/docs/conf.py b/docs/conf.py index 6f6d2f03a..d4b5d2cbb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = "3.0.2.dev" +version = "3.0.2" # The full version, including alpha/beta/rc tags. -release = "3.0.2.dev" +release = "3.0.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_deb/app/__init__.py b/pulp_deb/app/__init__.py index fffc36af5..63fe61cc1 100644 --- a/pulp_deb/app/__init__.py +++ b/pulp_deb/app/__init__.py @@ -6,5 +6,5 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig): name = "pulp_deb.app" label = "deb" - version = "3.0.2.dev" + version = "3.0.2" python_package_name = "pulp_deb" diff --git a/setup.py b/setup.py index 182cecf8c..05d21540c 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="3.0.2.dev", + version="3.0.2", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",