Skip to content

Commit

Permalink
Bump version: 0.28.1 → 0.28.2.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Aug 26, 2024
1 parent 0d6817f commit 5817710
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pulp-glue/pulp_glue/common/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.28.1"
__version__ = "0.28.2.dev"
2 changes: 1 addition & 1 deletion pulp-glue/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pulp-glue"
version = "0.28.1"
version = "0.28.2.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.8,<3.13"
Expand Down
2 changes: 1 addition & 1 deletion pulp_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
except ImportError:
HAS_CLICK_SHELL = False

__version__ = "0.28.1"
__version__ = "0.28.2.dev"
translation = get_translation(__package__)
_ = translation.gettext
# Keep track to prevent loading plugins twice
Expand Down
2 changes: 1 addition & 1 deletion pulpcore/cli/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from pulpcore.cli.common.debug import debug

__version__ = "0.28.1"
__version__ = "0.28.2.dev"


def mount(main: click.Group, **kwargs: t.Any) -> None:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pulp-cli"
version = "0.28.1"
version = "0.28.2.dev"
description = "Command line interface to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.8,<3.13"
Expand All @@ -23,7 +23,7 @@ classifiers=[
"Typing :: Typed",
]
dependencies = [
"pulp-glue==0.28.1",
"pulp-glue==0.28.2.dev",
"click>=8.0.0,<9.0.0",
"packaging>=20.0,<25",
"PyYAML>=5.3,<6.1",
Expand Down Expand Up @@ -79,7 +79,7 @@ binary_dependencies = ""

[tool.bumpversion]
# This section is managed by the cookiecutter templates.
current_version = "0.28.1"
current_version = "0.28.2.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down

0 comments on commit 5817710

Please sign in to comment.