File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
crates/xtask-bump-check/src Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -176,8 +176,6 @@ fn bump_check(args: &clap::ArgMatches, gctx: &cargo::util::GlobalContext) -> Car
176176 let mut cmd = ProcessBuilder :: new ( "cargo" ) ;
177177 cmd. arg ( "semver-checks" )
178178 . arg ( "check-release" )
179- . args ( & [ "--exclude" , "cargo-test-macro" ] ) // FIXME: Remove once 1.79 is stable.
180- . args ( & [ "--exclude" , "cargo-test-support" ] ) // FIXME: Remove once 1.79 is stable.
181179 . arg ( "--workspace" ) ;
182180 gctx. shell ( ) . status ( "Running" , & cmd) ?;
183181 cmd. exec ( ) ?;
@@ -186,8 +184,6 @@ fn bump_check(args: &clap::ArgMatches, gctx: &cargo::util::GlobalContext) -> Car
186184 let mut cmd = ProcessBuilder :: new ( "cargo" ) ;
187185 cmd. arg ( "semver-checks" )
188186 . arg ( "--workspace" )
189- . args ( & [ "--exclude" , "cargo-test-macro" ] ) // FIXME: Remove once 1.79 is stable.
190- . args ( & [ "--exclude" , "cargo-test-support" ] ) // FIXME: Remove once 1.79 is stable.
191187 . arg ( "--baseline-rev" )
192188 . arg ( referenced_commit. id ( ) . to_string ( ) ) ;
193189 for krate in crates_not_check_against_channels {
You can’t perform that action at this time.
0 commit comments