diff options
author | Alan Somers <asomers@gmail.com> | 2022-08-13 10:12:44 -0600 |
---|---|---|
committer | Alan Somers <asomers@gmail.com> | 2022-08-13 10:12:44 -0600 |
commit | ea4f1ba5c2bfb69126c88bab5e3fefb0f1b8cecc (patch) | |
tree | 6843071ec7e55bb33511dba3dc8b7b08db998554 | |
parent | 596db4ed00f0ccde62353de85f0468529f8059d4 (diff) | |
download | nix-ea4f1ba5c2bfb69126c88bab5e3fefb0f1b8cecc.zip |
[skip ci] Rollback master branch to 0.25.0
cargo-release automatically incremented the master branch's version
post-release. I don't like that, because it makes it harder for
consumers, especially indirect consumers, to use a `[patch.crates-io]`
section in their Cargo.toml files.
Also, configure cargo-release not to do this again in the future.
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | release.toml | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ name = "nix" description = "Rust friendly bindings to *nix APIs" edition = "2018" -version = "0.25.1-alpha.0" +version = "0.25.0" rust-version = "1.46" authors = ["The nix-rust Project Developers"] repository = "https://github.com/nix-rust/nix" diff --git a/release.toml b/release.toml index 23488fbf..a47a0f82 100644 --- a/release.toml +++ b/release.toml @@ -1,3 +1,4 @@ +dev-version = false pre-release-replacements = [ { file="CHANGELOG.md", search="Unreleased", replace="{{version}}" }, { file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}" } |