Skip to content

Commit

Permalink
Merge pull request #187 from precice/python-bindings-v2.5.0.4
Browse files Browse the repository at this point in the history
Bugfix release v2.5.0.4
  • Loading branch information
IshaanDesai authored Aug 9, 2023
2 parents 216f9bc + 6a839a7 commit f0786b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 2.5.0.4

* Add `tag_prefix = v` in versioneer configuration of `setup.cfg`.

## 2.5.0.3

* Update from versioneer 0.19 to 0.29.
Expand Down
2 changes: 1 addition & 1 deletion precice/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_config() -> VersioneerConfig:
cfg = VersioneerConfig()
cfg.VCS = "git"
cfg.style = "pep440"
cfg.tag_prefix = ""
cfg.tag_prefix = "v"
cfg.parentdir_prefix = "precice-"
cfg.versionfile_source = "precice/_version.py"
cfg.verbose = False
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ VCS = git
style = pep440
versionfile_source = precice/_version.py
versionfile_build = precice/_version.py
tag_prefix =
tag_prefix = v
parentdir_prefix = precice-

0 comments on commit f0786b3

Please sign in to comment.