From 8691373ff3f489eb09534c241a70b4edb812bec9 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Mon, 5 Sep 2022 17:00:25 +0800 Subject: [PATCH] Release plugin-v0.4.0 --- CHANGELOG.md | 2 +- README.md | 2 +- pyproject.plugin.toml | 2 +- tasks.py | 4 ---- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a4fde..8957744 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ * The two flavors of poetry-dynamic-versioning are now combined into one package via the optional `plugin` feature. -## poetry-dynamic-versioning-plugin: Unreleased +## poetry-dynamic-versioning-plugin: v0.4.0 (2022-09-05) * Deprecated the name `poetry-dynamic-versioning-plugin` in favor of a newly unified `poetry-dynamic-versioning`. diff --git a/README.md b/README.md index 52d0219..5e4de06 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ to enable the versioning system in PEP 517 build frontends. When installed with the `plugin` feature (i.e., `poetry-dynamic-versioning[plugin]`), it also integrates with the Poetry CLI to trigger the versioning in commands like `poetry build`. -For Poetry 1.1.x, you can use an older version of `poetry-dynamic-versioning` +For Poetry 1.1.x, you can use an older version of `poetry-dynamic-versioning` (0.17.1 or earlier) that relied on a `*.pth` import hack, but this is no longer supported, so you should migrate to the standardized plugin and Poetry 1.2.0+. diff --git a/pyproject.plugin.toml b/pyproject.plugin.toml index 7c2ac62..c22bf0b 100644 --- a/pyproject.plugin.toml +++ b/pyproject.plugin.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-dynamic-versioning-plugin" -version = "0.3.2" +version = "0.4.0" description = "Plugin for Poetry to enable dynamic versioning based on VCS tags" license = "MIT" authors = ["Matthew T. Kennerly "] diff --git a/tasks.py b/tasks.py index 3d52e67..fc6ec2a 100644 --- a/tasks.py +++ b/tasks.py @@ -34,15 +34,11 @@ def switch_to_plugin(): @task def patch(ctx): switch_to_patch() - with ctx.cd(ROOT): - ctx.run("poetry install") @task def plugin(ctx): switch_to_plugin() - with ctx.cd(ROOT): - ctx.run("poetry install") @task