diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 06449aac..aafda73a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.11.3.dev +current_version = 3.11.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 1e7464ea..05c0de92 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,17 @@ [//]: # (towncrier release notes start) +# ## 3.11.3 (2024-08-21) {: #3.11.3 } + +#### Bugfixes {: #3.11.3-bugfix } + +- Fixed uploads not supporting packages using metadata spec 2.3 + [#682](https://github.com/pulp/pulp_python/issues/682) +- Fixed package name normalization issue preventing syncing packages with "." or "_" in their names. + [#716](https://github.com/pulp/pulp_python/issues/716) + +--- + ## 3.11.2 (2024-06-27) {: #3.11.2 } diff --git a/CHANGES/682.bugfix b/CHANGES/682.bugfix deleted file mode 100644 index 4bf3e5b5..00000000 --- a/CHANGES/682.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed uploads not supporting packages using metadata spec 2.3 diff --git a/CHANGES/716.bugfix b/CHANGES/716.bugfix deleted file mode 100644 index 344bbf23..00000000 --- a/CHANGES/716.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed package name normalization issue preventing syncing packages with "." or "_" in their names. diff --git a/docs/conf.py b/docs/conf.py index 5391b933..6a1f6bec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "3.11.3.dev" +version = "3.11.3" # The full version, including alpha/beta/rc tags. -release = "3.11.3.dev" +release = "3.11.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index 79ce0fcf..69f3bbf3 100644 --- a/pulp_python/app/__init__.py +++ b/pulp_python/app/__init__.py @@ -8,5 +8,5 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig): name = "pulp_python.app" label = "python" - version = "3.11.3.dev" + version = "3.11.3" python_package_name = "pulp-python" diff --git a/setup.py b/setup.py index 70de72c2..f91143cb 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-python", - version="3.11.3.dev", + version="3.11.3", description="pulp-python plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",