diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 10aaf4d9..103197df 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.1.dev +current_version = 3.3.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index a4b98e04..caa9eb34 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,20 @@ [//]: # (towncrier release notes start) +# ## 3.3.1 (2024-08-06) {: #3.3.1 } + +#### Bugfixes {: #3.3.1-bugfix } + +- 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.3.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.3.0 (2024-06-19) {: #3.3.0 } 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 90a7e587..62ef9a45 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "3.3.1.dev" +version = "3.3.1" # The full version, including alpha/beta/rc tags. -release = "3.3.1.dev" +release = "3.3.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 c053f226..a7e6a944 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.3.1.dev" + version = "3.3.1" python_package_name = "pulp_deb" diff --git a/setup.py b/setup.py index 797417f9..5ebfa99d 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="3.3.1.dev", + version="3.3.1", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",