diff --git a/bases/polylith/cli/core.py b/bases/polylith/cli/core.py index 78c0649b..8e298a12 100644 --- a/bases/polylith/cli/core.py +++ b/bases/polylith/cli/core.py @@ -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()) diff --git a/projects/polylith_cli/pyproject.toml b/projects/polylith_cli/pyproject.toml index ab2243ca..e57f6e15 100644 --- a/projects/polylith_cli/pyproject.toml +++ b/projects/polylith_cli/pyproject.toml @@ -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/"