Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGES/+python3.10.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1265.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1272.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1284.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1290.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue/+python3.10.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue/+task_result.feature

This file was deleted.

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.37.0.dev"
__version__ = "0.38.0.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.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"
Expand Down
2 changes: 1 addition & 1 deletion pulp_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.37.0.dev"
__version__ = "0.38.0.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.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"
Expand All @@ -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",
Expand Down Expand Up @@ -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<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
Loading