Skip to content

Commit

Permalink
Bump version: 0.20.6 → 0.20.7.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Oct 2, 2023
1 parent aea3a70 commit 81c3afa
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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.6
current_version = 0.20.7.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 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.20.6"
version: "0.20.7.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.20.6"
__version__ = "0.20.7.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.6",
version="0.20.7.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.6"
__version__ = "0.20.7.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.6"
__version__ = "0.20.7.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.6",
version="0.20.7.dev",
packages=plugin_packages + extra_packages,
package_data={"": ["py.typed", "locale/*/LC_MESSAGES/*.mo"]},
python_requires=">=3.6",
install_requires=[
"pulp-glue==0.20.6",
"pulp-glue==0.20.7.dev",
"click>=8.0.0,<8.1.4",
"PyYAML>=5.3,<6.1",
"schema>=0.7.5,<0.8",
Expand Down

0 comments on commit 81c3afa

Please sign in to comment.