Skip to content

Commit

Permalink
fix bumpversion config
Browse files Browse the repository at this point in the history
Bumpversion was failing because incorrect quote type was specified. This apparently was no problem for earlier, more lenient, bumpversion versions.
  • Loading branch information
cwmeijer committed Jul 12, 2023
1 parent 7ae418d commit 2f59c3e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.1.0

[comment]
comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved

[bumpversion:file:dianna/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bumpversion:file:setup.cfg]
search = version = {current_version}
Expand All @@ -17,5 +17,5 @@ search = version: "{current_version}"
replace = version: "{new_version}"

[bumpversion:file:docs/conf.py]
search = version = "{current_version}"
replace = version = "{new_version}"
search = version = '{current_version}'
replace = version = '{new_version}'

0 comments on commit 2f59c3e

Please sign in to comment.