From 58177107049987c38b87f0192825c5b7ad67f5af Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 26 Aug 2024 15:17:07 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.28.1=20=E2=86=92=200.28.2.d?= =?UTF-8?q?ev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 67612e9c6..ccd2f34af 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 2768d0823..e0c2575e7 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -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" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 234d7ce56..d0d993f4b 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -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 diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 83ec61074..0b8ffc564 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -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: diff --git a/pyproject.toml b/pyproject.toml index cc75837ee..f1436d6ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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", @@ -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\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\.(?P[a-z]+))?"