Skip to content

Commit 892cc28

Browse files
authored
Merge pull request #1787 from Manishearth/rustup
Rustup to rustc 1.19.0-nightly (5579677 2017-05-26)
2 parents d4c91b2 + 8d3c486 commit 892cc28

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.136 - 2017-05-26
5+
* Update to *rustc 1.19.0-nightly (557967766 2017-05-26)*
6+
47
## 0.0.135 - 2017-05-24
58
* Update to *rustc 1.19.0-nightly (5b13bff52 2017-05-23)*
69

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.135"
3+
version = "0.0.136"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -31,7 +31,7 @@ test = false
3131

3232
[dependencies]
3333
# begin automatic update
34-
clippy_lints = { version = "0.0.135", path = "clippy_lints" }
34+
clippy_lints = { version = "0.0.136", path = "clippy_lints" }
3535
# end automatic update
3636
cargo_metadata = "0.2"
3737

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clippy_lints"
33
# begin automatic update
4-
version = "0.0.135"
4+
version = "0.0.136"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

clippy_lints/src/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ pub fn path_to_def(cx: &LateContext, path: &[&str]) -> Option<def::Def> {
288288
};
289289

290290
for item in &mem::replace(&mut items, vec![]) {
291-
if item.name == *segment {
291+
if item.ident.name == *segment {
292292
if path_it.peek().is_none() {
293293
return Some(item.def);
294294
}

0 commit comments

Comments
 (0)