Skip to content

Commit d24f893

Browse files
authored
fix(cli): typo in the poly sync annotation for the --verbose option (BREAKING) (#275)
* fix(cli): typo in the poly sync annotation for the --verbose option * bump CLI to 1.20.0
1 parent ae747ea commit d24f893

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bases/polylith/cli/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def sync_command(
132132
strict: Annotated[bool, options.strict] = False,
133133
quiet: Annotated[bool, options.quiet] = False,
134134
directory: Annotated[str, options.directory] = "",
135-
verbose: Annotated[str, options.verbose] = "",
135+
verbose: Annotated[bool, options.verbose] = False,
136136
):
137137
"""Update pyproject.toml with missing bricks."""
138138
root = repo.get_workspace_root(Path.cwd())

projects/polylith_cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "polylith-cli"
3-
version = "1.19.2"
3+
version = "1.20.0"
44
description = "Python tooling support for the Polylith Architecture"
55
authors = ['David Vujic']
66
homepage = "https://davidvujic.github.io/python-polylith-docs/"

0 commit comments

Comments
 (0)