diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e33d2476b..f0cf44e91 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.23.4.dev +current_version = 3.23.4 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 9085b7f10..5e963ed6e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,24 @@ [//]: # (towncrier release notes start) +## 3.23.4 (2024-06-16) {: #3.23.4 } + + +#### Bugfixes {: #3.23.4-bugfix } + +- Fixed modulemd upload raising an error when "packages" parameter was passed. + [#3427](https://github.com/pulp/pulp_rpm/issues/3427) +- Fixed modulemd_defaults create endpoint not setting the content digest. + [#3495](https://github.com/pulp/pulp_rpm/issues/3495) +- Taught tests to find centos8 at vault.centos.org. + [#3572](https://github.com/pulp/pulp_rpm/issues/3572) +- Fix a flaw that still allowed to add duplicate advisories to a repository version. + [#3587](https://github.com/pulp/pulp_rpm/issues/3587) +- Made sync more tolerant of poorly configured webservers. + [#3599](https://github.com/pulp/pulp_rpm/issues/3599) + +--- + ## 3.23.3 (2024-02-09) {: #3.23.3 } ### Bugfixes diff --git a/CHANGES/3427.bugfix b/CHANGES/3427.bugfix deleted file mode 100644 index e67ec007d..000000000 --- a/CHANGES/3427.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed modulemd upload raising an error when "packages" parameter was passed. diff --git a/CHANGES/3495.bugfix b/CHANGES/3495.bugfix deleted file mode 100644 index 4e8a2e44a..000000000 --- a/CHANGES/3495.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed modulemd_defaults create endpoint not setting the content digest. diff --git a/CHANGES/3572.bugfix b/CHANGES/3572.bugfix deleted file mode 100644 index 0a54dc837..000000000 --- a/CHANGES/3572.bugfix +++ /dev/null @@ -1 +0,0 @@ -Taught tests to find centos8 at vault.centos.org. diff --git a/CHANGES/3587.bugfix b/CHANGES/3587.bugfix deleted file mode 100644 index 8ad037a4b..000000000 --- a/CHANGES/3587.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a flaw that still allowed to add duplicate advisories to a repository version. diff --git a/CHANGES/3599.bugfix b/CHANGES/3599.bugfix deleted file mode 100644 index 60c18bf71..000000000 --- a/CHANGES/3599.bugfix +++ /dev/null @@ -1 +0,0 @@ -Made sync more tolerant of poorly configured webservers. diff --git a/docs/conf.py b/docs/conf.py index 0cec1e62b..aeb4ce923 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = "3.23.4.dev" +version = "3.23.4" # The full version, including alpha/beta/rc tags. -release = "3.23.4.dev" +release = "3.23.4" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_rpm/app/__init__.py b/pulp_rpm/app/__init__.py index dde226d3a..731111dfb 100644 --- a/pulp_rpm/app/__init__.py +++ b/pulp_rpm/app/__init__.py @@ -8,6 +8,6 @@ class PulpRpmPluginAppConfig(PulpPluginAppConfig): name = "pulp_rpm.app" label = "rpm" - version = "3.23.4.dev" + version = "3.23.4" python_package_name = "pulp-rpm" domain_compatible = True diff --git a/setup.py b/setup.py index 572b033e8..d996d9b13 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-rpm", - version="3.23.4.dev", + version="3.23.4", description="RPM plugin for the Pulp Project", long_description=long_description, license="GPLv2+",