Skip to content

Commit

Permalink
Fixes bumpversion to search and replace for only our version without …
Browse files Browse the repository at this point in the history
…touching dependencies (#510)
  • Loading branch information
TheMellyBee committed Apr 5, 2022
1 parent dd2d81a commit 9c556f3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,17 @@ values =
prod

[bumpversion:file:src/whylogs/_version.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

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

[bumpversion:file:Makefile]
search = version := {current_version}
replace = version := {new_version}

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

0 comments on commit 9c556f3

Please sign in to comment.