Skip to content

Commit a1bb38a

Browse files
committed
Release 0.35.2
1 parent abc7ffc commit a1bb38a

6 files changed

Lines changed: 22 additions & 7 deletions

File tree

CHANGES.md

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

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

13+
## 0.35.2 (2026-05-05) {: #0.35.2 }
14+
15+
16+
17+
No significant changes.
18+
19+
20+
### Pulp GLUE {: #0.35.2-pulp-glue }
21+
22+
23+
No significant changes.
24+
25+
26+
---
27+
1328
## 0.35.1 (2025-10-15) {: #0.35.1 }
1429

1530

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.35.2.dev"
1+
__version__ = "0.35.2"

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.35.2.dev"
7+
version = "0.35.2"
88
description = "Version agnostic glue library to talk to pulpcore's REST API."
99
readme = "README.md"
1010
requires-python = ">=3.9,<3.15"

pulp_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
except ImportError:
2929
HAS_CLICK_SHELL = False
3030

31-
__version__ = "0.35.2.dev"
31+
__version__ = "0.35.2"
3232
translation = get_translation(__package__)
3333
_ = translation.gettext
3434
# 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.35.2.dev"
7+
__version__ = "0.35.2"
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.35.2.dev"
7+
version = "0.35.2"
88
description = "Command line interface to talk to pulpcore's REST API."
99
readme = "README.md"
1010
requires-python = ">=3.9,<3.15"
@@ -23,7 +23,7 @@ classifiers=[
2323
"Typing :: Typed",
2424
]
2525
dependencies = [
26-
"pulp-glue==0.35.2.dev",
26+
"pulp-glue==0.35.2",
2727
"click>=8.0.0,<8.3", # Proven to not do semver.
2828
"PyYAML>=5.3,<6.1",
2929
"schema>=0.7.5,<0.8",
@@ -79,7 +79,7 @@ unittests = true
7979

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

0 commit comments

Comments
 (0)