diff --git a/components/polylith/diff/report.py b/components/polylith/diff/report.py index 0beefce6..0bb05770 100644 --- a/components/polylith/diff/report.py +++ b/components/polylith/diff/report.py @@ -61,7 +61,7 @@ def print_diff_summary( console.print(Padding(f"[data]Diff: based on the {tag} tag[/]", (1, 0, 1, 0))) if not bases and not components: - console.print("[data]No changes found.[/]") + console.print("[data]No brick changes found.[/]") return if components: diff --git a/projects/poetry_polylith_plugin/README.md b/projects/poetry_polylith_plugin/README.md index e1f2b51a..cdd8594e 100644 --- a/projects/poetry_polylith_plugin/README.md +++ b/projects/poetry_polylith_plugin/README.md @@ -53,12 +53,12 @@ With the `Poetry` version 1.2 or later installed, you can add plugins. Add the [Multiproject](https://github.com/DavidVujic/poetry-multiproject-plugin) plugin, that will enable the very important __workspace__ support to Poetry. ``` shell -poetry plugin add poetry-multiproject-plugin +poetry self add poetry-multiproject-plugin ``` Add the Polylith plugin: ``` shell -poetry plugin add poetry-polylith-plugin +poetry self add poetry-polylith-plugin ``` ### Create a repository diff --git a/projects/poetry_polylith_plugin/pyproject.toml b/projects/poetry_polylith_plugin/pyproject.toml index aef410a1..3b509506 100644 --- a/projects/poetry_polylith_plugin/pyproject.toml +++ b/projects/poetry_polylith_plugin/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-polylith-plugin" -version = "1.0.0" +version = "1.0.1" description = "A Poetry plugin that adds tooling support for the Polylith Architecture" authors = ["David Vujic"] homepage = "https://github.com/davidvujic/python-polylith"