Skip to content

Releases: mtkennerly/poetry-dynamic-versioning

v0.12.4 (2021-03-05)

05 Mar 23:04
Compare
Choose a tag to compare
  • Fixed:
    • An incompatibility with tox-poetry-installer where the working directory
      was received as a str instead of a Path.
      (Contributed by cburgess)

v0.12.3 (2021-02-19)

20 Feb 04:14
Compare
Choose a tag to compare
  • Fixed:
    • Previously, when building a source distribution with poetry build, the plugin's config section would retain the enable = 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 by poetry 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)

31 Jan 01:04
Compare
Choose a tag to compare
  • Fixed:
    • Another possible exception when applying patches if only poetry-core was installed and not the Poetry tool, particularly combined with Tox.

v0.12.1 (2021-01-04)

05 Jan 02:32
Compare
Choose a tag to compare
  • Fixed:
    • Possible exception when applying patches if only poetry-core was installed and not the Poetry tool.

v0.12.0 (2020-12-05)

05 Dec 11:11
Compare
Choose a tag to compare

v0.11.0 (2020-11-21)

21 Nov 17:25
Compare
Choose a tag to compare
  • Added:
    • bump option.
  • Fixed:
    • poetry shell did not clean up after itself.

v0.10.0 (2020-10-08)

09 Oct 01:47
Compare
Choose a tag to compare
  • Added:
    • Support for patching poetry-core when used as a standalone build system.

v0.9.0 (2020-09-27)

27 Sep 16:33
Compare
Choose a tag to compare
  • Changed:
    • Dropped support for pip wheel . and bumped the minimum Poetry version to 1.0.2 in order to enable fixing the following issue.
  • 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 to poetry.core.semver.version starting in Poetry 1.1.0a1. The plugin can now handle either location.

v0.8.3 (2020-08-07)

08 Aug 02:08
Compare
Choose a tag to compare

v0.8.2 (2020-07-06)

07 Jul 03:44
Compare
Choose a tag to compare
  • Fixed an issue with Python 3.5 compatibility. (Contributed by gsemet)
  • Increased minimum Dunamai version to propagate the latest updates.