Skip to content

Commit

Permalink
fix bump2version config and fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
saxix committed Nov 13, 2024
1 parent e80ec61 commit 9359149
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
commit = False
Expand All @@ -9,3 +9,5 @@ allow_dirty = True
[bumpversion:file:src/hope_flex_fields/__init__.py]

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hope-flex-fields"
version = "0.6.0"
version = "0.6.1"
description = ""
authors = [
{name = "sax", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion src/hope_flex_fields/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = __version__ = "0.6.0"
VERSION = __version__ = "0.6.1"

0 comments on commit 9359149

Please sign in to comment.