Skip to content

Commit b45801f

Browse files
authored
Merge pull request #2593 from rust-lang-nursery/rustup
Rustup to rustc 1.26.0-nightly (ae544ee 2018-03-29)
2 parents 9887b97 + b09e115 commit b45801f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.191
5+
* Rustup to *rustc 1.26.0-nightly (ae544ee1c 2018-03-29)*
6+
* Lint audit; categorize lints as style, correctness, complexity, pedantic, nursery, restriction.
7+
48
## 0.0.190
59
* Fix a bunch of intermittent cargo bugs
610

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.190"
3+
version = "0.0.191"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -37,7 +37,7 @@ path = "src/driver.rs"
3737

3838
[dependencies]
3939
# begin automatic update
40-
clippy_lints = { version = "0.0.190", path = "clippy_lints" }
40+
clippy_lints = { version = "0.0.191", path = "clippy_lints" }
4141
# end automatic update
4242
regex = "0.2"
4343
semver = "0.9"

clippy_lints/Cargo.toml

+1-1
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.190"
4+
version = "0.0.191"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

clippy_lints/src/utils/paths.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub const OPTION_SOME: [&str; 4] = ["core", "option", "Option", "Some"];
5757
pub const PTR_NULL: [&str; 2] = ["ptr", "null"];
5858
pub const PTR_NULL_MUT: [&str; 2] = ["ptr", "null_mut"];
5959
pub const RANGE: [&str; 3] = ["core", "ops", "Range"];
60-
pub const RANGE_ARGUMENT_TRAIT: [&str; 3] = ["core", "ops", "RangeBound"];
60+
pub const RANGE_ARGUMENT_TRAIT: [&str; 3] = ["core", "ops", "RangeBounds"];
6161
pub const RANGE_FROM: [&str; 3] = ["core", "ops", "RangeFrom"];
6262
pub const RANGE_FROM_STD: [&str; 3] = ["std", "ops", "RangeFrom"];
6363
pub const RANGE_FULL: [&str; 3] = ["core", "ops", "RangeFull"];

0 commit comments

Comments
 (0)