From 75f7fd0a7c661e3c61d175237ba338578abb38a3 Mon Sep 17 00:00:00 2001 From: David Vujic Date: Tue, 23 Jan 2024 23:23:28 +0100 Subject: [PATCH] bump version to 1.1.1. Add docs about required hatch hook section --- projects/hatch_polylith_bricks/README.md | 3 +++ projects/hatch_polylith_bricks/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/projects/hatch_polylith_bricks/README.md b/projects/hatch_polylith_bricks/README.md index b81b6eda..4cd0eecd 100644 --- a/projects/hatch_polylith_bricks/README.md +++ b/projects/hatch_polylith_bricks/README.md @@ -9,6 +9,9 @@ This build hook will look for Polylith `bricks` in `pyproject.toml` and __option [build-system] requires = ["hatchling", "hatch-polylith-bricks"] build-backend = "hatchling.build" + +[tool.hatch.build.hooks.polylith-bricks] +# NOTE: this section is needed to enable the hook in the build process, even if empty ``` This Build Hook has two main usages: diff --git a/projects/hatch_polylith_bricks/pyproject.toml b/projects/hatch_polylith_bricks/pyproject.toml index 4699f525..5b2f656d 100644 --- a/projects/hatch_polylith_bricks/pyproject.toml +++ b/projects/hatch_polylith_bricks/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hatch-polylith-bricks" -version = "1.1.0" +version = "1.1.1" description = "Hatch build hook plugin for Polylith" authors = ['David Vujic'] homepage = "https://davidvujic.github.io/python-polylith-docs/"