bumpversion 0.0.13

Update all version strings in your project and optionally commit and tag the changes
Documentation
[package]
name = "bumpversion"
license-file = "../../LICENSE"
readme = "../../README.md"
documentation = "https://docs.rs/bumpversion"
publish = true

version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
repository.workspace = true
categories = [
  "command-line-utilities",
]
keywords = [
  "semver",
  "bumpversion",
  "bump2version",
]

[lib]
crate-type = ["cdylib", "lib"]

[lints]
workspace = true

[dependencies]
thiserror.workspace = true
tracing.workspace = true
parking_lot = "0"

# temporary file for git messages
tempfile = "3"

# resolve glob patterns
glob = "0"

# show diffs of file changes
similar-asserts.workspace = true

# time for env context
chrono = { version = "^0.4.40", default-features = true }

# commands
shlex = "^2.0.1"
async-process = "2"

# parse python f-strings
winnow = "1.0.4"

# regex
regex = "^1.11"

# parse config files
serde = { version = "1", features = ["derive"] }
serde-ini-spanned = "0"
toml-span = { version = "0", features = ["reporting", "serde"] }
toml_edit = "0"
indexmap = { version = "2", features = ["serde"] }

# diagnostics
colored = "3"
codespan-reporting = "0"
unindent = "0"

# async runtime 
tokio.workspace = true
futures.workspace = true

[dev-dependencies]
color-eyre.workspace = true

rand = "0"
indoc = "2"
regex = "^1.11"