diff --git a/CHANGES/+python3.10.removal b/CHANGES/+python3.10.removal deleted file mode 100644 index b3a7cbf31..000000000 --- a/CHANGES/+python3.10.removal +++ /dev/null @@ -1 +0,0 @@ -Dropped support for python 3.9. diff --git a/CHANGES/1265.bugfix b/CHANGES/1265.bugfix deleted file mode 100644 index 826b4aaa3..000000000 --- a/CHANGES/1265.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed interactive config generation to allow empty plugin list. All availale plugins will be used in that case. diff --git a/CHANGES/1272.feature b/CHANGES/1272.feature deleted file mode 100644 index 874b7ac70..000000000 --- a/CHANGES/1272.feature +++ /dev/null @@ -1 +0,0 @@ -Added support to vulnerability report for pulp_python plugin. diff --git a/CHANGES/1284.bugfix b/CHANGES/1284.bugfix deleted file mode 100644 index b992e3161..000000000 --- a/CHANGES/1284.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix CLI explicitly creating a publication after package upload when repo has autopublish enabled diff --git a/CHANGES/1290.bugfix b/CHANGES/1290.bugfix deleted file mode 100644 index 98c779ce1..000000000 --- a/CHANGES/1290.bugfix +++ /dev/null @@ -1 +0,0 @@ -Stop passing latest repository version on modify commands if no version number was provided. diff --git a/CHANGES/pulp-glue/+python3.10.removal b/CHANGES/pulp-glue/+python3.10.removal deleted file mode 100644 index b3a7cbf31..000000000 --- a/CHANGES/pulp-glue/+python3.10.removal +++ /dev/null @@ -1 +0,0 @@ -Dropped support for python 3.9. diff --git a/CHANGES/pulp-glue/+task_result.feature b/CHANGES/pulp-glue/+task_result.feature deleted file mode 100644 index afe06996d..000000000 --- a/CHANGES/pulp-glue/+task_result.feature +++ /dev/null @@ -1 +0,0 @@ -Added a preference to return the result of a task in case on is given over guessing what happened. diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 11211970c..b343589e5 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.37.0.dev" +__version__ = "0.38.0.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index bef7b8414..94cc10408 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.37.0.dev" +version = "0.38.0.dev" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.10,<3.15" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index da50d9d8d..8f9fddcd3 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -24,7 +24,7 @@ except ImportError: HAS_CLICK_SHELL = False -__version__ = "0.37.0.dev" +__version__ = "0.38.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 3e9867478..aa85dfc39 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.37.0.dev" +__version__ = "0.38.0.dev" def mount(main: click.Group, **kwargs: t.Any) -> None: diff --git a/pyproject.toml b/pyproject.toml index 648e00d65..342649b9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.37.0.dev" +version = "0.38.0.dev" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.10,<3.15" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.37.0.dev", + "pulp-glue==0.38.0.dev", "click>=8.0.0,<8.4", # Proven to not do semver. "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", @@ -78,7 +78,7 @@ unittests = true [tool.bumpversion] # This section is managed by the cookiecutter templates. -current_version = "0.37.0.dev" +current_version = "0.38.0.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\.(?P[a-z]+))?"