From 7196756d4efaca1eabdc55321afaa78361797bae Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 9 Jul 2024 17:23:29 +0000 Subject: [PATCH] Release 2.4.3 --- .bumpversion.cfg | 2 +- CHANGES.md | 7 +++++++ docs/conf.py | 4 ++-- pulp_ostree/app/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9959fcda..472fa3d2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.3.dev +current_version = 2.4.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 462d8356..5fae6b0c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,13 @@ [//]: # (towncrier release notes start) +## 2.4.3 (2024-07-09) {: #2.4.3 } + + +No significant changes. + +--- + ## 2.4.2 (2024-07-09) {: #2.4.2 } diff --git a/docs/conf.py b/docs/conf.py index e3daf228..a2df0070 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.4.3.dev" +version = "2.4.3" # The full version, including alpha/beta/rc tags. -release = "2.4.3.dev" +release = "2.4.3" # 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 f8ebf527..5cd8a9f6 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.3.dev" + version = "2.4.3" python_package_name = "pulp-ostree" domain_compatible = True diff --git a/setup.py b/setup.py index 41bed1f1..688b06c9 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ostree", - version="2.4.3.dev", + version="2.4.3", description="OSTree plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",