Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pyledctrl / tbump.toml
Size: Mime:
[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"