A cargo subcommand to set the next version of a crate.
text
cargo install cargo-next --locked
text
$ cargo next --minor
$ cargo next 0.1.5
$ ./emits-new-version.sh | cargo next
$ cargo next --get
0.2.3
```rust use cargonext::{bumpversion, getversion, setversion, SemVer};
let pathtotoml = ...;
// Bump the version by a semver component. let res = bumpversion(&pathtotoml, SemVer::Minor); // Set the version directly. let res = setversion(&pathtotoml, "0.1.2"); // Or get the version of a crate. let res = getversion(&pathtotoml); ```
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.