Skip to content

Commit

Permalink
Bump version to 0.21.0.dev
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Jul 3, 2023
1 parent 30693bb commit 8cb9121
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.20.0
current_version = 0.21.0.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/pulp_glue/common/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.20.0"
__version__ = "0.21.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="[email protected]",
url="https://github.com/pulp/pulp-cli",
version="0.20.0",
version="0.21.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.20.0"
__version__ = "0.21.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.20.0"
__version__ = "0.21.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="[email protected]",
url="https://github.com/pulp/pulp-cli",
version="0.20.0",
version="0.21.0.dev",
packages=plugin_packages + extra_packages,
package_data={"": ["py.typed", "locale/*/LC_MESSAGES/*.mo"]},
python_requires=">=3.6",
install_requires=[
"pulp-glue==0.20.0",
"pulp-glue==0.21.0.dev",
"click>=8.0.0,<9.0.0",
"PyYAML~=5.3",
"schema>=0.7.5,<0.8",
Expand Down

0 comments on commit 8cb9121

Please sign in to comment.