Skip to content

Commit aa40fc4

Browse files
committed
Release 2.16.11
1 parent 209b8b6 commit aa40fc4

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88

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

11+
## 2.16.11 (2025-03-18) {: #2.16.11 }
12+
13+
#### Bugfixes {: #2.16.11-bugfix }
14+
15+
- Fixed a bug where the authentication scheme in the authorization header
16+
was not being parsed correctly.
17+
[#1812](https://github.com/pulp/pulp_container/issues/1812)
18+
19+
---
20+
1121
## 2.16.10 (2025-01-07) {: #2.16.10 }
1222

1323
#### Bugfixes {: #2.16.10-bugfix }

CHANGES/1812.bugfix

Lines changed: 0 additions & 2 deletions
This file was deleted.

pulp_container/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig):
66

77
name = "pulp_container.app"
88
label = "container"
9-
version = "2.16.11.dev"
9+
version = "2.16.11"
1010
python_package_name = "pulp-container"
1111

1212
def ready(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ignore = [
5454
[tool.bumpversion]
5555
# This section is managed by the plugin template. Do not edit manually.
5656

57-
current_version = "2.16.11.dev"
57+
current_version = "2.16.11"
5858
commit = false
5959
tag = false
6060
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="pulp-container",
13-
version="2.16.11.dev",
13+
version="2.16.11",
1414
description="Container plugin for the Pulp Project",
1515
long_description=long_description,
1616
license="GPLv2+",

0 commit comments

Comments
 (0)