Skip to content

Commit

Permalink
Configure tbump (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Jun 30, 2023
1 parent eb49641 commit 91991fe
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ console_scripts =
dev =
black==22.1.0
flake8==4.0.1
tbump
test =
duckdb
pytest >= 7.0.0
Expand Down
17 changes: 17 additions & 0 deletions tbump.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[version]
current = "0.1.0"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''

[git]
message_template = "Bump to {new_version}"
tag_template = "{new_version}"

[[file]]
src = "arcae/__init__.py"
search = "__version__ = \"{current_version}\""

0 comments on commit 91991fe

Please # to comment.