Skip to content

Commit e02ac61

Browse files
committed
Release 0.29.4
1 parent 29aac81 commit e02ac61

7 files changed

Lines changed: 24 additions & 8 deletions

File tree

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.29.4 (2025-05-12) {: #0.29.4 }
14+
15+
16+
17+
#### Bugfixes {: #0.29.4-bugfix }
18+
19+
- Adjust click dependency constraints to breaking changes in y-releases.
20+
21+
22+
### Pulp GLUE {: #0.29.4-pulp-glue }
23+
24+
25+
No significant changes.
26+
27+
28+
---
29+
1330
## 0.29.3 (2025-03-31) {: #0.29.3 }
1431

1532

CHANGES/+click.dependency.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.29.4.dev"
1+
__version__ = "0.29.4"

pulp-glue/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"
7-
version = "0.29.4.dev"
7+
version = "0.29.4"
88
description = "Version agnostic glue library to talk to pulpcore's REST API."
99
readme = "README.md"
1010
requires-python = ">=3.8,<3.14"

pulp_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
except ImportError:
2323
HAS_CLICK_SHELL = False
2424

25-
__version__ = "0.29.4.dev"
25+
__version__ = "0.29.4"
2626
translation = get_translation(__package__)
2727
_ = translation.gettext
2828
# Keep track to prevent loading plugins twice

pulpcore/cli/common/__init__.py

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

55
from pulpcore.cli.common.debug import debug
66

7-
__version__ = "0.29.4.dev"
7+
__version__ = "0.29.4"
88

99

1010
def mount(main: click.Group, **kwargs: t.Any) -> None:

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"
7-
version = "0.29.4.dev"
7+
version = "0.29.4"
88
description = "Command line interface to talk to pulpcore's REST API."
99
readme = "README.md"
1010
requires-python = ">=3.8,<3.14"
@@ -23,7 +23,7 @@ classifiers=[
2323
"Typing :: Typed",
2424
]
2525
dependencies = [
26-
"pulp-glue==0.29.4.dev",
26+
"pulp-glue==0.29.4",
2727
"click>=8.0.0,<8.2", # Proven to not do semver.
2828
"packaging>=20.0,<=25", # CalVer
2929
"PyYAML>=5.3,<6.1",
@@ -80,7 +80,7 @@ unittests = false
8080

8181
[tool.bumpversion]
8282
# This section is managed by the cookiecutter templates.
83-
current_version = "0.29.4.dev"
83+
current_version = "0.29.4"
8484
commit = false
8585
tag = false
8686
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)