Skip to content

Commit

Permalink
Release v1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Jan 21, 2021
1 parent 126ce56 commit 023ba57
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_dunamai.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 023ba57

Please sign in to comment.