summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-11-20 03:04:43 +0000
committerbors <bors@rust-lang.org>2023-11-20 03:04:43 +0000
commit130825286fab399d27fc79cf62a6caa1d9026119 (patch)
tree120a8e8b125150a7b30a0712a831a2ef6a9589bf
parent5c8a2842e00cb5b167e632168797b61b2774f6c0 (diff)
parentb08c2084e9be22422bb0a96624c215e9599f3af3 (diff)
Auto merge of #13015 - ehuss:bump-stable-0.75.1, r=weihanglorust-1.74.0
[stable 1.74] Bump cargo patch version https://github.com/rust-lang/cargo/pull/13004 bumped the credential crate versions to deal with a semver-incompatible change, but I believe we also need to bump and publish cargo. My thinking is that: * cargo 0.75.0 currently depends on cargo-credential-libsecret="0.3.1" * The `Cargo.lock` is locked to **0.3.2** * We plan to yank cargo-credential-libsecret 0.3.2 * Users who depend on cargo 0.75.0 as a library will be unable to do so since after yanking it will pick up cargo-credential-libsecret="0.3.1", but this won't work. * cargo 0.75.0 -> cargo-credential 0.4.0 * cargo-credential-libsecret 0.3.1 -> cargo-credential **0.3.0** (Users using a `Cargo.lock`, like doing rust builds, shouldn't be affected by the yank.) So, after publishing the new credential crates, I think we'll also need to publish a new 0.75.1 which depends on the correct versions so that users can use 0.75. It also probably makes sense to yank 0.75.0.
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fda5f26c1..b75452495 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -234,7 +234,7 @@ dependencies = [
[[package]]
name = "cargo"
-version = "0.75.0"
+version = "0.75.1"
dependencies = [
"anstream",
"anstyle",
diff --git a/Cargo.toml b/Cargo.toml
index cd2171ebd..23bcdc578 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -105,7 +105,7 @@ windows-sys = "0.48"
[package]
name = "cargo"
-version = "0.75.0"
+version = "0.75.1"
edition.workspace = true
license.workspace = true
homepage = "https://crates.io"