From df9287890938e5ad82723029671e633ff670fbfd Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Sun, 27 Sep 2020 12:32:00 -0400 Subject: [PATCH] Release v0.9.0 --- CHANGELOG.md | 5 +++-- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43fa80e..71cfbe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## v0.9.0 (2020-09-27) * Changed: * Dropped support for `pip wheel .` and bumped the minimum Poetry version to @@ -9,7 +9,8 @@ in order to correctly report their versions. * `poetry run` did not always clean up after itself. * `poetry.semver.version` could not be imported because it was moved to - `poetry.core.semver.version` starting in Poetry 1.1.0a1. + `poetry.core.semver.version` starting in Poetry 1.1.0a1. The plugin can now + handle either location. ## v0.8.3 (2020-08-07) diff --git a/pyproject.toml b/pyproject.toml index eb1723f..bb4574f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-dynamic-versioning" -version = "0.8.3" +version = "0.9.0" description = "Plugin for Poetry to enable dynamic versioning based on VCS tags" license = "MIT" authors = ["Matthew T. Kennerly "]