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 #761

Merged
merged 1 commit into from
Aug 3, 2023
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.21.0.dev
current_version = 0.22.0.dev
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
1 change: 0 additions & 1 deletion CHANGES/630.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/726.misc

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ site_name: Pulp CLI
theme:
name: readthedocs
custom_dir: docs/theme
version: "0.21.0.dev"
version: "0.22.0.dev"
repo_url: https://github.com/pulp/pulp-cli
edit_uri: edit/main/docs/
markdown_extensions:
Expand Down
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.21.0.dev"
__version__ = "0.22.0.dev"
2 changes: 1 addition & 1 deletion pulp-glue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author="Pulp Team",
author_email="pulp-list@redhat.com",
url="https://github.com/pulp/pulp-cli",
version="0.21.0.dev",
version="0.22.0.dev",
packages=plugin_packages,
package_data={"": ["py.typed"]},
python_requires=">=3.6",
Expand Down
2 changes: 1 addition & 1 deletion pulp_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import click
import pkg_resources

__version__ = "0.21.0.dev"
__version__ = "0.22.0.dev"
_main: Optional[click.Group] = None


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 @@ -18,7 +18,7 @@
from pulpcore.cli.common.debug import debug
from pulpcore.cli.common.generic import PulpCLIContext, pulp_group

__version__ = "0.21.0.dev"
__version__ = "0.22.0.dev"

translation = get_translation(__name__)
_ = translation.gettext
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
author="Pulp Team",
author_email="pulp-list@redhat.com",
url="https://github.com/pulp/pulp-cli",
version="0.21.0.dev",
version="0.22.0.dev",
packages=plugin_packages + extra_packages,
package_data={"": ["py.typed", "locale/*/LC_MESSAGES/*.mo"]},
python_requires=">=3.6",
install_requires=[
"pulp-glue==0.21.0.dev",
"pulp-glue==0.22.0.dev",
"click>=8.0.0,<8.1.7",
"PyYAML>=5.3,<6.1",
"schema>=0.7.5,<0.8",
Expand Down
Loading