Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 9f20245

Browse files
authored
Merge pull request #6 from DerwenAI/update
fix versioning bug
2 parents 9e41b1b + 27927bf commit 9f20245

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# `goedwig` changelog
22

3+
## 0.1.2
4+
5+
2021-10-10
6+
7+
* fix versioning bug
8+
9+
310
## 0.1.1
411

512
2021-10-10

goedwig/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313

1414
repo_path = pathlib.Path(dirname(__file__))
1515
repo = Repo(repo_path.parents[0])
16-
__version__ = str(repo.tags[0])
16+
__version__ = str(repo.tags[-1])
1717

1818
MIN_PY_VERSION: typing.Tuple = (3, 8,)

0 commit comments

Comments
 (0)