Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dev-version #1044

Merged
merged 1 commit into from
Aug 22, 2024
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/+fix_fake_mode_upload.bugfix

This file was deleted.

7 changes: 0 additions & 7 deletions CHANGES/687.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/926.feature

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue/+converge_defaults.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/pulp-glue/+created_resources.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue/+fix_rpm_copy_spec.bugfix

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue/1037.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/pulp-glue/969.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.28.0.dev"
__version__ = "0.29.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.28.0.dev"
version = "0.29.0.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.0.dev"
__version__ = "0.29.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.28.0.dev"
__version__ = "0.29.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.28.0.dev"
version = "0.29.0.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.0.dev",
"pulp-glue==0.29.0.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.0.dev"
current_version = "0.29.0.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
Loading