From a25d3864d9af279dca0a1235545ebc8afee2a38b Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 14 Jan 2022 10:57:54 -0800 Subject: [PATCH] Bump to 0.61.0 --- Cargo.toml | 2 +- tests/testsuite/profiles.rs | 22 +--------------------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 21f0bfd49..ab6a64068 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo" -version = "0.60.0" +version = "0.61.0" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://crates.io" diff --git a/tests/testsuite/profiles.rs b/tests/testsuite/profiles.rs index 972467765..b9801cd6b 100644 --- a/tests/testsuite/profiles.rs +++ b/tests/testsuite/profiles.rs @@ -2,7 +2,7 @@ use std::env; -use cargo_test_support::{is_nightly, project}; +use cargo_test_support::project; #[cargo_test] fn profile_overrides() { @@ -471,11 +471,6 @@ fn thin_lto_works() { #[cargo_test] fn strip_works() { - if !is_nightly() { - // rustc 1.58 stabilized -C strip; disable the test until that ships. - return; - } - let p = project() .file( "Cargo.toml", @@ -504,11 +499,6 @@ fn strip_works() { #[cargo_test] fn strip_passes_unknown_option_to_rustc() { - if !is_nightly() { - // rustc 1.58 stabilized -C strip; disable the test until that ships. - return; - } - let p = project() .file( "Cargo.toml", @@ -538,11 +528,6 @@ error: incorrect value `unknown` for [..] `strip` [..] was expected #[cargo_test] fn strip_accepts_true_to_strip_symbols() { - if !is_nightly() { - // rustc 1.58 stabilized -C strip; disable the test until that ships. - return; - } - let p = project() .file( "Cargo.toml", @@ -571,11 +556,6 @@ fn strip_accepts_true_to_strip_symbols() { #[cargo_test] fn strip_accepts_false_to_disable_strip() { - if !is_nightly() { - // rustc 1.58 stabilized -C strip; disable the test until that ships. - return; - } - let p = project() .file( "Cargo.toml",