Skip to content

Commit b3acdee

Browse files
authored
fix(deps): typo in message about brick circular dependencies (#396)
* fix: typo in output message about circular brick dependencies * bump Poetry plugin to 1.45.1 * bump CLI to 1.38.1
1 parent e9db163 commit b3acdee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/polylith/deps/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def print_brick_with_circular_deps(brick: str, deps: Set[str], bricks: dict) ->
155155
others = "[data],[/] ".join(with_tags)
156156

157157
prefix = ":information:"
158-
message = f"[{tag}]{brick}[/] [data]is used by[/] {others} [data]and is also uses[/] {others}[data].[/]"
158+
message = f"[{tag}]{brick}[/] [data]is used by[/] {others} [data]and also uses[/] {others}[data].[/]"
159159

160160
console.print(f"{prefix} {message}", overflow="ellipsis")
161161

projects/poetry_polylith_plugin/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 = "poetry-polylith-plugin"
3-
version = "1.45.0"
3+
version = "1.45.1"
44
description = "A Poetry plugin that adds tooling support for the Polylith Architecture"
55
authors = ["David Vujic"]
66
homepage = "https://davidvujic.github.io/python-polylith-docs/"

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.38.0"
3+
version = "1.38.1"
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)