diff --git a/CHANGES.md b/CHANGES.md index 876bf3bb1..029da8cad 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,14 @@ [//]: # (towncrier release notes start) +## 2.26.10 (2026-04-01) {: #2.26.10 } + +#### Bugfixes {: #2.26.10-bugfix } + +- Support "atomic" replications in pulpcore 3.107 + +--- + ## 2.26.9 (2026-03-30) {: #2.26.9 } #### Bugfixes {: #2.26.9-bugfix } diff --git a/CHANGES/+atomic-replication-support.bugfix b/CHANGES/+atomic-replication-support.bugfix deleted file mode 100644 index 6795fafdc..000000000 --- a/CHANGES/+atomic-replication-support.bugfix +++ /dev/null @@ -1 +0,0 @@ -Support "atomic" replications in pulpcore 3.107 diff --git a/pulp_container/app/__init__.py b/pulp_container/app/__init__.py index 2c8528157..2c6a551b1 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -23,7 +23,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.26.10.dev" + version = "2.26.11.dev" python_package_name = "pulp-container" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 6d3f26337..1d2295fd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-container" -version = "2.26.10.dev" +version = "2.26.11.dev" description = "Container plugin for the Pulp Project" readme = "README.md" authors = [ @@ -89,7 +89,7 @@ ignore = [ [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "2.26.10.dev" +current_version = "2.26.11.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?"