Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5ee891c

Browse files
committedApr 2, 2018
Auto merge of #49590 - alexcrichton:update-deps, r=Mark-Simulacrum
Bump to 1.27.0 Also update some `Cargo.lock` dependencies, finishing up some final steps of our [release process]! This doesn't update the bootstrap compiler just yet but that will come in a follow-up PR. [release process]: https://forge.rust-lang.org/release-process.html
2 parents 934902a + e9d8983 commit 5ee891c

File tree

3 files changed

+191
-165
lines changed

3 files changed

+191
-165
lines changed
 

‎src/Cargo.lock

Lines changed: 185 additions & 164 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/bootstrap/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use Build;
2424
use config::Config;
2525

2626
// The version number
27-
pub const CFG_RELEASE_NUM: &str = "1.26.0";
27+
pub const CFG_RELEASE_NUM: &str = "1.27.0";
2828

2929
pub struct GitInfo {
3030
inner: Option<Info>,

‎src/tools/linkchecker/main.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,11 @@ fn check(cache: &mut Cache,
257257
return;
258258
}
259259

260+
// These appear to be broken in mdbook right now?
261+
if fragment.starts_with("-") {
262+
return;
263+
}
264+
260265
let entry = &mut cache.get_mut(&pretty_path).unwrap();
261266
entry.parse_ids(&pretty_path, &contents, errors);
262267

0 commit comments

Comments
 (0)
Please sign in to comment.