Repository URL to install this package:
|
Version:
4.2.0 ▾
|
pyledctrl
/
tbump.toml
|
|---|
[version]
current = "4.2.0"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''
[git]
message_template = "chore: bumped version to {new_version}"
tag_template = "{new_version}"
[[file]]
src = "pyproject.toml"
search = 'version = "{current_version}"'
[[file]]
src = "src/pyledctrl/version.py"
version_template = "({major}, {minor}, {patch})"
search = "__version_info__ = {current_version}"
[[before_commit]]
name = "Run tests"
cmd = "uv run pytest && pre-commit run --all-files"