Skip to content

Commit d987f05

Browse files
committed
Release 2.5.0
1 parent ad61e7d commit d987f05

File tree

9 files changed

+22
-9
lines changed

9 files changed

+22
-9
lines changed

CHANGES.md

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

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

11+
## 2.5.0 (2025-08-14) {: #2.5.0 }
12+
13+
#### Bugfixes {: #2.5.0-bugfix }
14+
15+
- Fixed an issue when trying to use import-all as a non-admin user.
16+
[#373](https://github.com/pulp/pulp_ostree/issues/373)
17+
- Disable the an `import_all` test if pulpcore version is equal or higher than 3.59 given a specific fix in that version.
18+
[#403](https://github.com/pulp/pulp_ostree/issues/403)
19+
20+
#### Removals {: #2.5.0-removal }
21+
22+
- This release drops support for Python<3.11.
23+
24+
#### Misc {: #2.5.0-misc }
25+
26+
- [#416](https://github.com/pulp/pulp_ostree/issues/416), [#422](https://github.com/pulp/pulp_ostree/issues/422), [#435](https://github.com/pulp/pulp_ostree/issues/435)
27+
28+
---
29+
1130
## 2.4.8 (2025-04-22) {: #2.4.8 }
1231

1332
No significant changes.

CHANGES/+python3-11.removal

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/373.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/403.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/416.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/422.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/435.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

pulp_ostree/app/__init__.py

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

77
name = "pulp_ostree.app"
88
label = "ostree"
9-
version = "2.5.0.dev"
9+
version = "2.5.0"
1010
python_package_name = "pulp-ostree"
1111
domain_compatible = True

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'
77

88
[project]
99
name = "pulp-ostree"
10-
version = "2.5.0.dev"
10+
version = "2.5.0"
1111
description = "OSTree plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -121,7 +121,7 @@ ignore = [
121121
[tool.bumpversion]
122122
# This section is managed by the plugin template. Do not edit manually.
123123

124-
current_version = "2.5.0.dev"
124+
current_version = "2.5.0"
125125
commit = false
126126
tag = false
127127
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)