Skip to content

Commit

Permalink
fix(cli): typo in the poly sync annotation for the --verbose option (…
Browse files Browse the repository at this point in the history
…BREAKING) (#275)

* fix(cli): typo in the poly sync annotation for the --verbose option

* bump CLI to 1.20.0
  • Loading branch information
DavidVujic authored Oct 8, 2024
1 parent ae747ea commit d24f893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bases/polylith/cli/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def sync_command(
strict: Annotated[bool, options.strict] = False,
quiet: Annotated[bool, options.quiet] = False,
directory: Annotated[str, options.directory] = "",
verbose: Annotated[str, options.verbose] = "",
verbose: Annotated[bool, options.verbose] = False,
):
"""Update pyproject.toml with missing bricks."""
root = repo.get_workspace_root(Path.cwd())
Expand Down
2 changes: 1 addition & 1 deletion projects/polylith_cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "polylith-cli"
version = "1.19.2"
version = "1.20.0"
description = "Python tooling support for the Polylith Architecture"
authors = ['David Vujic']
homepage = "https://davidvujic.github.io/python-polylith-docs/"
Expand Down

0 comments on commit d24f893

Please sign in to comment.