From 023ba57a556c0267e471cc9c1ed52c29674d0385 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Wed, 20 Jan 2021 21:35:44 -0500 Subject: [PATCH] Release v1.5.4 --- .github/workflows/main.yaml | 2 +- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- tests/integration/test_dunamai.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b44ee03..3c8ce66 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -52,7 +52,7 @@ jobs: - run: | export PATH="$PATH:/opt" sudo apt-get install -y darcs bzr - curl https://www.fossil-scm.org/home/uv/fossil-linux-x64-2.11.2.tar.gz -o ~/fossil.tgz + curl https://www.fossil-scm.org/home/uv/fossil-linux-x64-2.14.tar.gz -o ~/fossil.tgz tar -xvf ~/fossil.tgz -C /opt git config --global user.name "foo" diff --git a/CHANGELOG.md b/CHANGELOG.md index c98c28c..fa789e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.5.4 (2021-01-20) + +* Fixed handling of Git tags that contain commas. + ## v1.5.3 (2021-01-13) * Fixed Semantic Versioning enforcement to allow metadata segments with diff --git a/pyproject.toml b/pyproject.toml index abba195..713b5e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dunamai" -version = "1.5.3" +version = "1.5.4" description = "Dynamic version generation" license = "MIT" authors = ["Matthew T. Kennerly "] diff --git a/tests/integration/test_dunamai.py b/tests/integration/test_dunamai.py index c59e3df..5b0333e 100644 --- a/tests/integration/test_dunamai.py +++ b/tests/integration/test_dunamai.py @@ -518,7 +518,7 @@ def test__version__from_fossil(tmp_path) -> None: with chdir(vcs): run("fossil init repo") - run("fossil open repo") + run("fossil open repo --force") assert from_vcs() == Version("0.0.0", distance=0, commit="abc", dirty=False) (vcs / "foo.txt").write_text("hi")