diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 51bb70bd..52bbaa22 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.1.dev +current_version = 2.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 8fcbeaf9..813e5e19 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,17 @@ [//]: # (towncrier release notes start) +## 2.3.1 (2024-06-18) {: #2.3.1 } + + +#### Bugfixes {: #2.3.1-bugfix } + +- Fixed an issue with `rpm-ostree` having multiples commits in the same tar file and breaking + Pulp `import-commits`. + [#366](https://github.com/pulp/pulp_ostree/issues/366) + +--- + ## 2.3.0 (2024-02-19) {: #2.3.0 } ### Features diff --git a/CHANGES/366.bugfix b/CHANGES/366.bugfix deleted file mode 100644 index ac95bbc1..00000000 --- a/CHANGES/366.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed an issue with `rpm-ostree` having multiples commits in the same tar file and breaking -Pulp `import-commits`. diff --git a/docs/conf.py b/docs/conf.py index 1809dd31..4d518d7e 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.3.1.dev" +version = "2.3.1" # The full version, including alpha/beta/rc tags. -release = "2.3.1.dev" +release = "2.3.1" # 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 b421fddf..1943da16 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.3.1.dev" + version = "2.3.1" python_package_name = "pulp-ostree" domain_compatible = True diff --git a/setup.py b/setup.py index 3445b4d4..6d5d0d10 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-ostree", - version="2.3.1.dev", + version="2.3.1", description="OSTree plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",