Skip to content

Commit

Permalink
Release 2.20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Jan 7, 2025
1 parent 7efe67f commit 755adec
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@

[//]: # (towncrier release notes start)

## 2.20.5 (2025-01-07) {: #2.20.5 }

#### Bugfixes {: #2.20.5-bugfix }

- Fixed a bug where the authentication scheme in the authorization header
was not being parsed correctly.
[#1812](https://github.com/pulp/pulp_container/issues/1812)
- Fixed an issue in `DOCKER_MANIFEST_V1_SCHEMA` definition where the optional `jwk` header parameter
was defined as required.
[#1874](https://github.com/pulp/pulp_container/issues/1874)

---

## 2.20.4 (2024-10-25) {: #2.20.4 }

#### Bugfixes {: #2.20.4-bugfix }
Expand Down
2 changes: 0 additions & 2 deletions CHANGES/1812.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1874.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_container/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig):

name = "pulp_container.app"
label = "container"
version = "2.20.5.dev"
version = "2.20.5"
python_package_name = "pulp-container"

def ready(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ignore = [
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "2.20.5.dev"
current_version = "2.20.5"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="pulp-container",
version="2.20.5.dev",
version="2.20.5",
description="Container plugin for the Pulp Project",
long_description=long_description,
license="GPLv2+",
Expand Down

0 comments on commit 755adec

Please sign in to comment.