diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 35fdd5f5f..77a1d3bcd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.2.dev +current_version = 3.1.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 15a6166da..d307b2de6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,23 @@ Changelog .. towncrier release notes start +3.1.2 (2024-02-29) +================== + +Bugfixes +-------- + +- Fixed a bug where enabling the ``APT_BY_HASH`` setting did not enable the feature. + `#984 `_ +- Fixed DEBUG logging of prohibited duplicate packages. + `#994 `_ +- Suppressed deb822's confusing log warning about python-apt not being installed. + `#1019 `_ + + +---- + + 3.1.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/984.bugfix b/CHANGES/984.bugfix deleted file mode 100644 index cbb377b8d..000000000 --- a/CHANGES/984.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where enabling the ``APT_BY_HASH`` setting did not enable the feature. 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 169e2d9ab..6035125d0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = "3.1.2.dev" +version = "3.1.2" # The full version, including alpha/beta/rc tags. -release = "3.1.2.dev" +release = "3.1.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 d6dc9f842..278cdd8f6 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.1.2.dev" + version = "3.1.2" python_package_name = "pulp_deb" diff --git a/setup.py b/setup.py index 1147b06e9..48a8120f5 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="3.1.2.dev", + version="3.1.2", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",