diff --git a/CHANGES/+move_generic.removal b/CHANGES/+move_generic.removal deleted file mode 100644 index 0111a5539..000000000 --- a/CHANGES/+move_generic.removal +++ /dev/null @@ -1,2 +0,0 @@ -The module `generic` moved from `pulpcore.cli.common.generic` to `pulp_cli.generic`. -The old import path is still available for compatibility reasons. diff --git a/CHANGES/1129.feature b/CHANGES/1129.feature deleted file mode 100644 index a7536d00c..000000000 --- a/CHANGES/1129.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for checkpoint distributions and publications. diff --git a/CHANGES/1137.feature b/CHANGES/1137.feature deleted file mode 100644 index 7c9da47eb..000000000 --- a/CHANGES/1137.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for content label commands, requires pulpcore 3.73.2 or later. diff --git a/CHANGES/1139.bugfix b/CHANGES/1139.bugfix deleted file mode 100644 index 96f06f66b..000000000 --- a/CHANGES/1139.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fix a bug when header values weren't allowed to contain other than alphanumeric characters. -Also combine the headers from setting and the commandline. diff --git a/CHANGES/1148.doc b/CHANGES/1148.doc deleted file mode 100644 index 93c32a191..000000000 --- a/CHANGES/1148.doc +++ /dev/null @@ -1 +0,0 @@ -Removed "supported workflows" from user reference material. diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 717e2a2bf..71123c9b1 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.32.0.dev" +__version__ = "0.33.0.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 8680696b1..b7b99013c 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.32.0.dev" +version = "0.33.0.dev" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.9,<3.14" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 85520f254..794e8e37e 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -27,7 +27,7 @@ except ImportError: HAS_CLICK_SHELL = False -__version__ = "0.32.0.dev" +__version__ = "0.33.0.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 789eccd76..6ee74f67f 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.32.0.dev" +__version__ = "0.33.0.dev" def mount(main: click.Group, **kwargs: t.Any) -> None: diff --git a/pyproject.toml b/pyproject.toml index 6e9bb32d5..efc8809cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.32.0.dev" +version = "0.33.0.dev" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.9,<3.14" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.32.0.dev", + "pulp-glue==0.33.0.dev", "click>=8.0.0,<9", "packaging>=20.0,<=24.2", # CalVer "PyYAML>=5.3,<6.1", @@ -81,7 +81,7 @@ unittests = true [tool.bumpversion] # This section is managed by the cookiecutter templates. -current_version = "0.32.0.dev" +current_version = "0.33.0.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\.(?P[a-z]+))?"