From c914e25bb70b83f3cd30e426af8235f8b0accfe5 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 30 Oct 2024 15:21:50 +0000 Subject: [PATCH] Release 2.4.4 --- .bumpversion.cfg | 2 +- CHANGES.md | 9 +++++++++ CHANGES/403.bugfix | 1 - docs/conf.py | 4 ++-- pulp_ostree/app/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/403.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 51426ebe..20f64f95 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.4.dev +current_version = 2.4.4 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 5fae6b0c..bf5adfe2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,15 @@ [//]: # (towncrier release notes start) +## 2.4.4 (2024-10-30) {: #2.4.4 } + +#### Bugfixes {: #2.4.4-bugfix } + +- Disable the an `import_all` test if pulpcore version is equal or higher than 3.59 given a specific fix in that version. + [#403](https://github.com/pulp/pulp_ostree/issues/403) + +--- + ## 2.4.3 (2024-07-09) {: #2.4.3 } diff --git a/CHANGES/403.bugfix b/CHANGES/403.bugfix deleted file mode 100644 index 092936cf..00000000 --- a/CHANGES/403.bugfix +++ /dev/null @@ -1 +0,0 @@ -Disable the an `import_all` test if pulpcore version is equal or higher than 3.59 given a specific fix in that version. diff --git a/docs/conf.py b/docs/conf.py index 8d8d19c3..489c645f 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.4.4.dev" +version = "2.4.4" # The full version, including alpha/beta/rc tags. -release = "2.4.4.dev" +release = "2.4.4" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_ostree/app/__init__.py b/pulp_ostree/app/__init__.py index 252b1d88..094ab861 100755 --- a/pulp_ostree/app/__init__.py +++ b/pulp_ostree/app/__init__.py @@ -6,6 +6,6 @@ class PulpOstreePluginAppConfig(PulpPluginAppConfig): name = "pulp_ostree.app" label = "ostree" - version = "2.4.4.dev" + version = "2.4.4" python_package_name = "pulp-ostree" domain_compatible = True diff --git a/setup.py b/setup.py index f9b850c4..83db878b 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ostree", - version="2.4.4.dev", + version="2.4.4", description="OSTree plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",