From f6c049180ea4e2e500855b5f5f0938bd0cc4ca30 Mon Sep 17 00:00:00 2001 From: Kapil Thangavelu Date: Tue, 23 May 2023 12:11:12 -0400 Subject: [PATCH] releng - increment version for release (#12) --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf21b3f..e371fdf 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,6 @@ twine upload dist/*.whl ## Mono-Repo Support -To support mono repos consisting of multiple libraries/applications, when creating a frozen wheel, dev dependencies specified by path can be optionally substituted out for references to their release artifact versions. +To support mono repos consisting of multiple libraries/applications, when creating a frozen wheel, main group dependencies specified by path can be optionally substituted out for references to their release artifact versions. This assumes automation to run build and publish across the various subpackages, ie typically via make or just. diff --git a/pyproject.toml b/pyproject.toml index f8e47c2..3f823f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-freeze" -version = "1.0.3" +version = "1.0.4" description = "Poetry plugin to freeze a wheel's dependencies per lock file" license = "Apache-2.0" authors = ["Kapil Thangavelu "]