Skip to content

Commit

Permalink
Bump version: 0.2.0 → 0.2.1.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Oct 26, 2023
1 parent 7f54220 commit 11c64c3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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.2.0
current_version = 0.2.1.dev
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
2 changes: 1 addition & 1 deletion pulp-glue-gem/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-gem",
version="0.2.0",
version="0.2.1.dev",
packages=plugin_packages,
package_data={"": ["py.typed"]},
python_requires=">=3.6",
Expand Down
2 changes: 1 addition & 1 deletion pulpcore/cli/gem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
translation = get_translation(__name__)
_ = translation.gettext

__version__ = "0.2.0"
__version__ = "0.2.1.dev"


@pulp_group(name="gem")
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
name="pulp-cli-gem",
description="Command line interface to talk to pulpcore's REST API. (Gem plugin commands)",
url="https://github.com/pulp/pulp-cli-gem",
version="0.2.0",
version="0.2.1.dev",
packages=plugin_packages,
package_data={package: ["py.typed"] for package in plugin_packages},
python_requires=">=3.6",
install_requires=["pulp-cli>=0.20.0", "pulp-glue-gem==0.2.0"],
install_requires=["pulp-cli>=0.20.0", "pulp-glue-gem==0.2.1.dev"],
entry_points={
"pulp_cli.plugins": [f"{name}={module}" for name, module in plugin_entry_points],
},
Expand Down

0 comments on commit 11c64c3

Please sign in to comment.