From 248ecece5e0a527c951bb9dd5c10ab13d1b4937d Mon Sep 17 00:00:00 2001 From: davidvujic Date: Sun, 13 Nov 2022 21:57:04 +0100 Subject: [PATCH 1/2] fix: typo in docs about installing Poetry plugins --- projects/poetry_polylith_plugin/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 224c35db5a82838a2951ff6e73e0753f941d44d8 Mon Sep 17 00:00:00 2001 From: davidvujic Date: Sun, 13 Nov 2022 22:04:22 +0100 Subject: [PATCH 2/2] fix: clarify poly diff with no brick changes --- components/polylith/diff/report.py | 2 +- projects/poetry_polylith_plugin/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/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"