diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3ede74d1..18ffd9ee 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.2.1.dev +current_version = 3.2.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index e5a3e3f7..2378625b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,23 @@ [//]: # (towncrier release notes start) +# ## 3.2.1 (2024-08-06) {: #3.2.1 } + +#### Bugfixes {: #3.2.1-bugfix } + +- Fixed a bug where an ``IntegrityError`` was raised during publish when a source package belonged to + two dists. + [#1053](https://github.com/pulp/pulp_deb/issues/1053) +- Fixed throwing the wrong error when pointing to an invalid repository with a custom signing service. + [#1122](https://github.com/pulp/pulp_deb/issues/1122) + +#### Misc {: #3.2.1-misc } + +- Improved the publish task performance by optimizing the database queries used in that task. + [#1115](https://github.com/pulp/pulp_deb/issues/1115) + +--- + ## 3.2.0 (2024-03-04) {: #3.2.0 } ### Features diff --git a/CHANGES/1053.bugfix b/CHANGES/1053.bugfix deleted file mode 100644 index ed7d596c..00000000 --- a/CHANGES/1053.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed a bug where an ``IntegrityError`` was raised during publish when a source package belonged to -two dists. diff --git a/CHANGES/1115.misc b/CHANGES/1115.misc deleted file mode 100644 index a4626abc..00000000 --- a/CHANGES/1115.misc +++ /dev/null @@ -1 +0,0 @@ -Improved the publish task performance by optimizing the database queries used in that task. diff --git a/CHANGES/1122.bugfix b/CHANGES/1122.bugfix deleted file mode 100644 index 029e0203..00000000 --- a/CHANGES/1122.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed throwing the wrong error when pointing to an invalid repository with a custom signing service. diff --git a/docs/conf.py b/docs/conf.py index cf1f05ed..60a51ca8 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "3.2.1.dev" +version = "3.2.1" # The full version, including alpha/beta/rc tags. -release = "3.2.1.dev" +release = "3.2.1" # 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 b197fafa..836e85b2 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.2.1.dev" + version = "3.2.1" python_package_name = "pulp_deb" diff --git a/setup.py b/setup.py index 10c870fd..97770dce 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="3.2.1.dev", + version="3.2.1", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",