diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 020e85e369..c23cec0a45 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.28.28.dev +current_version = 3.28.28 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index aabeffda88..cd5cb8ae82 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,21 @@ [//]: # (towncrier release notes start) +## 3.28.28 (2024-06-18) {: #3.28.28 } + + +### REST API {: #3.28.28-rest-api } + +#### Misc {: #3.28.28-rest-api-misc } + +- [#5462](https://github.com/pulp/pulpcore/issues/5462) + +### Plugin API {: #3.28.28-plugin-api } + +No significant changes. + +--- + ## 3.28.27 (2024-05-22) {: #3.28.27 } ### REST API diff --git a/CHANGES/5462.misc b/CHANGES/5462.misc deleted file mode 100644 index 4c9c0ed9a2..0000000000 --- a/CHANGES/5462.misc +++ /dev/null @@ -1 +0,0 @@ -Add `pulpcore-manager openapi` command to help generate `api.json` for bindings. diff --git a/docs/conf.py b/docs/conf.py index e48995f59a..1089f740a7 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.28.28.dev" +version = "3.28.28" # The full version, including alpha/beta/rc tags. -release = "3.28.28.dev" +release = "3.28.28" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index c4f93acf5e..af812878a3 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -234,7 +234,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.28.28.dev" + version = "3.28.28" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 440df0b8ae..1642603425 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.28.28.dev", + version="3.28.28", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",