Skip to content

Commit 982fd69

Browse files
authored
fix(poly diff): print --short output without word wrap (#246)
* fix(poly diff): print output in --short mode without word wrapping * bump Poetry plugin to 1.27.1 * bump CLI to 1.14.1
1 parent bc7d4c6 commit 982fd69

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/polylith/diff/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def print_detected_changes(changes: List[str], markup: str, short: bool) -> None
2929
console = Console(theme=theme.poly_theme)
3030

3131
if short:
32-
console.print(",".join(changes))
32+
console.out(",".join(changes))
3333
return
3434

3535
for brick in changes:

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.27.0"
3+
version = "1.27.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.14.0"
3+
version = "1.14.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)