Releases: mtkennerly/poetry-dynamic-versioning
Releases · mtkennerly/poetry-dynamic-versioning
v0.12.5 (2021-04-18)
- Fixed:
- When the
bump
option was enabled, the version would be bumped even when on a commit with a version tag. Now, no bumping occurs when on such a commit.
- When the
v0.12.4 (2021-03-05)
- Fixed:
- An incompatibility with
tox-poetry-installer
where the working directory
was received as astr
instead of aPath
.
(Contributed by cburgess)
- An incompatibility with
v0.12.3 (2021-02-19)
- Fixed:
-
Previously, when building a source distribution with
poetry build
, the plugin's config section would retain theenable = true
setting, which would then cause an error when installing the artifact since the VCS info would not be available. (This was not an issue for wheels generated bypoetry build
.)The dynamic version from build time is still present in the source distribution, so there is no need for the plugin at install time. Therefore, the plugin now temporarily sets
enable = false
so that that value will be placed in the source distribution, then restores the original setting for development purposes.
-
v0.12.2 (2021-01-30)
- Fixed:
- Another possible exception when applying patches if only
poetry-core
was installed and not the Poetry tool, particularly combined with Tox.
- Another possible exception when applying patches if only
v0.12.1 (2021-01-04)
- Fixed:
- Possible exception when applying patches if only
poetry-core
was installed and not the Poetry tool.
- Possible exception when applying patches if only
v0.12.0 (2020-12-05)
- Added:
tagged-metadata
option, for the corresponding Dunamai feature. (Contributed by mariusvniekerk)
v0.11.0 (2020-11-21)
- Added:
bump
option.
- Fixed:
poetry shell
did not clean up after itself.
v0.10.0 (2020-10-08)
- Added:
- Support for patching
poetry-core
when used as a standalone build system.
- Support for patching
v0.9.0 (2020-09-27)
- Changed:
- Dropped support for
pip wheel .
and bumped the minimum Poetry version to 1.0.2 in order to enable fixing the following issue.
- Dropped support for
- Fixed:
- The main project's dynamic version would be applied to path/Git dependencies. Now, the plugin tracks state and configuration for each dependency separately 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 topoetry.core.semver.version
starting in Poetry 1.1.0a1. The plugin can now handle either location.
v0.8.3 (2020-08-07)
- Fixed a possible issue with string interning in glob handling. (Contributed by mariusvniekerk)