Skip to content

Commit f0786b3

Browse files
authored
Merge pull request #187 from precice/python-bindings-v2.5.0.4
Bugfix release v2.5.0.4
2 parents 216f9bc + 6a839a7 commit f0786b3

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 2.5.0.4
6+
7+
* Add `tag_prefix = v` in versioneer configuration of `setup.cfg`.
8+
59
## 2.5.0.3
610

711
* Update from versioneer 0.19 to 0.29.

precice/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_config() -> VersioneerConfig:
5151
cfg = VersioneerConfig()
5252
cfg.VCS = "git"
5353
cfg.style = "pep440"
54-
cfg.tag_prefix = ""
54+
cfg.tag_prefix = "v"
5555
cfg.parentdir_prefix = "precice-"
5656
cfg.versionfile_source = "precice/_version.py"
5757
cfg.verbose = False

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ VCS = git
1717
style = pep440
1818
versionfile_source = precice/_version.py
1919
versionfile_build = precice/_version.py
20-
tag_prefix =
20+
tag_prefix = v
2121
parentdir_prefix = precice-

0 commit comments

Comments
 (0)