Skip to content

Commit b302562

Browse files
committed
Release 0.4.0
1 parent a62ebaf commit b302562

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@
1010

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

13+
## 0.4.0 (2025-04-10) {: #0.4.0 }
14+
15+
16+
17+
#### Bugfixes {: #0.4.0-bugfix }
18+
19+
- Fixed compatibility with pulp-cli 0.25 and declared it properly for pulp-glue-maven.
20+
21+
22+
### Pulp-maven GLUE {: #0.4.0-pulp-maven-glue }
23+
24+
25+
No significant changes.
26+
27+
28+
---
29+
1330
## 0.3.1 (2024-05-23) {: #0.3.1 }
1431

1532

CHANGES/+pulp-cli-0.25.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0.dev"
1+
__version__ = "0.4.0"

pulp-glue-maven/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pulp-glue-maven"
7-
version = "0.4.0.dev"
7+
version = "0.4.0"
88
description = "Version agnostic glue library to talk to pulpcore's REST API. (Maven plugin)"
99
readme = "README.md"
1010
requires-python = ">=3.8"

pulpcore/cli/maven/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
translation = get_translation(__name__)
1212
_ = translation.gettext
1313

14-
__version__ = "0.4.0.dev"
14+
__version__ = "0.4.0"
1515

1616

1717
@pulp_group(name="maven")

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pulp-cli-maven"
7-
version = "0.4.0.dev"
7+
version = "0.4.0"
88
description = "Command line interface to talk to pulpcore's REST API. (Maven plugin commands)"
99
readme = "README.md"
1010
requires-python = ">=3.8"
@@ -24,7 +24,7 @@ classifiers=[
2424
]
2525
dependencies = [
2626
"pulp-cli>=0.24.0,<0.32",
27-
"pulp-glue-maven==0.4.0.dev",
27+
"pulp-glue-maven==0.4.0",
2828
]
2929

3030
[project.urls]
@@ -146,7 +146,7 @@ ignore_missing_imports = true
146146

147147
[tool.bumpversion]
148148
# This section is managed by the cookiecutter templates.
149-
current_version = "0.4.0.dev"
149+
current_version = "0.4.0"
150150
commit = false
151151
tag = false
152152
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)