Releases: your-tools/tbump
Releases · your-tools/tbump
v6.0.1
v6.0.0
- Breaking change: Search strings are now regular expressions
- Breaking change: Allow globs in paths (breaking if paths contained
*
,?
,[
or]
characters).
v5.0.4
- Preserve line endings when patching files.
v0.5.3
v5.0.2
- Rename
before_push
section tobefore_commit
: it better reflets at which
moment the hook runs. Note that you can still usebefore_push
or evenhook
if
you want.
v5.0.1
- Expose
tbump.bump_files()
convenience function.
v5.0.0
- Breaking change: tbump can now run hooks after the push is made. Thus
[[hook]]
sections should be renamed to[before_push]]
or
[[after_push]]
:
# Before (< 5.0.0), running before push by default:
[[hook]]
name = "some hook"
cmd = "some command"
# After (>= 5.00), more explicit syntax:
[[before_push]]
name = "some hook"
cmd = "some command"
# New feature: running after push is made:
[[after_push]]
name = "some other hook"
cmd = "some other command"
tbump init
now takes the current version directly on the command line instead of interactively asking for it
v4.0.0
- Re-add
--dry-run
- Add
tbump init
to interactively create thetbump.toml
configuration file
v3.0.1
v3.0.0
- New feature: you can now specify commands to be run after files have been patched and right before git commands are executed.
[[hook]]
name = "Update Cargo.lock"
cmd = "cargo check"