Skip to content

Commit ae8c332

Browse files
committed
Bump version: 0.39.3 → 0.39.4.dev
1 parent 4ffc8ba commit ae8c332

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.39.3"
7+
version = "0.39.4.dev"
88
description = "Version agnostic glue library to talk to pulpcore's REST API."
99
readme = "README.md"
1010
requires-python = ">=3.10,<3.15"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.39.3"
1+
__version__ = "0.39.4.dev"

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.39.3"
7+
version = "0.39.4.dev"
88
description = "Command line interface to talk to pulpcore's REST API."
99
readme = "README.md"
1010
requires-python = ">=3.10,<3.15"
@@ -22,7 +22,7 @@ classifiers=[
2222
"Typing :: Typed",
2323
]
2424
dependencies = [
25-
"pulp-glue==0.39.3",
25+
"pulp-glue==0.39.4.dev",
2626
"click>=8.0.0,<8.4", # Proven to not do semver.
2727
"PyYAML>=5.3,<6.1",
2828
"schema>=0.7.5,<0.8",
@@ -79,7 +79,7 @@ paralleltests = true
7979

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

src/pulp_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
except ImportError:
2626
HAS_CLICK_SHELL = False
2727

28-
__version__ = "0.39.3"
28+
__version__ = "0.39.4.dev"
2929
translation = get_translation(__package__)
3030
_ = translation.gettext
3131
# Keep track to prevent loading plugins twice

src/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.39.3"
7+
__version__ = "0.39.4.dev"
88

99

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

0 commit comments

Comments
 (0)