diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f14f57660..a8172cc00 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.14.12.dev +current_version = 2.14.12 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 3104003da..c3b890546 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,21 @@ Changelog .. towncrier release notes start +2.14.12 (2024-02-15) +==================== + +Deprecations and Removals +------------------------- + +- Removed the optional "kid" parameter stored inside the signatures' payload generated during + docker manifest v2 schema 1 conversion. This change also removes the ``ecdsa`` dependency, + which is vulnerable to Minevra timing attacks. + `#1485 `__ + + +---- + + 2.14.11 (2024-01-30) ==================== diff --git a/CHANGES/1485.removal b/CHANGES/1485.removal deleted file mode 100644 index d0ee06c73..000000000 --- a/CHANGES/1485.removal +++ /dev/null @@ -1,3 +0,0 @@ -Removed the optional "kid" parameter stored inside the signatures' payload generated during -docker manifest v2 schema 1 conversion. This change also removes the ``ecdsa`` dependency, -which is vulnerable to Minevra timing attacks. diff --git a/docs/conf.py b/docs/conf.py index 8e3ae9411..1cc9cf50d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = "2.14.12.dev" +version = "2.14.12" # The full version, including alpha/beta/rc tags. -release = "2.14.12.dev" +release = "2.14.12" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_container/app/__init__.py b/pulp_container/app/__init__.py index a1c1463f3..fd0323f5d 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -6,5 +6,5 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.14.12.dev" + version = "2.14.12" python_package_name = "pulp-container" diff --git a/setup.py b/setup.py index a20b294b3..f0fcae070 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.14.12.dev", + version="2.14.12", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",