Skip to content

Commit 1c6c79f

Browse files
committed
Version bump
1 parent 1ba6587 commit 1c6c79f

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 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.207
5+
* Rustup to *rustc 1.28.0-nightly (4ecf12bf0 2018-06-02)*
6+
47
## 0.0.206
58
* Rustup to *rustc 1.28.0-nightly (5bf68db6e 2018-05-28)*
69

@@ -726,6 +729,7 @@ All notable changes to this project will be documented in this file.
726729
[`module_inception`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#module_inception
727730
[`modulo_one`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#modulo_one
728731
[`multiple_crate_versions`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#multiple_crate_versions
732+
[`multiple_inherent_impl`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#multiple_inherent_impl
729733
[`mut_from_ref`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_from_ref
730734
[`mut_mut`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_mut
731735
[`mut_range_bound`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_range_bound

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cargo-features = ["edition"]
22

33
[package]
44
name = "clippy"
5-
version = "0.0.206"
5+
version = "0.0.207"
66
authors = [
77
"Manish Goregaokar <[email protected]>",
88
"Andre Bogus <[email protected]>",
@@ -40,7 +40,7 @@ path = "src/driver.rs"
4040

4141
[dependencies]
4242
# begin automatic update
43-
clippy_lints = { version = "0.0.206", path = "clippy_lints" }
43+
clippy_lints = { version = "0.0.207", path = "clippy_lints" }
4444
# end automatic update
4545
regex = "1"
4646
semver = "0.9"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
99

10-
[There are 260 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
10+
[There are 261 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
1111

1212
We have a bunch of lint categories to allow you to choose how much clippy is supposed to ~~annoy~~ help you:
1313

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cargo-features = ["edition"]
33
[package]
44
name = "clippy_lints"
55
# begin automatic update
6-
version = "0.0.206"
6+
version = "0.0.207"
77
# end automatic update
88
authors = [
99
"Manish Goregaokar <[email protected]>",

clippy_lints/src/utils/inspector.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
5353
println!("impl item `{}`", item.name);
5454
match item.vis {
5555
hir::Visibility::Public => println!("public"),
56-
hir::Visibility::Crate => println!("visible crate wide"),
56+
hir::Visibility::Crate(_) => println!("visible crate wide"),
5757
hir::Visibility::Restricted { ref path, .. } => println!(
5858
"visible in module `{}`",
5959
print::to_string(print::NO_ANN, |s| s.print_path(path, false))
@@ -345,7 +345,7 @@ fn print_item(cx: &LateContext, item: &hir::Item) {
345345
println!("item `{}`", item.name);
346346
match item.vis {
347347
hir::Visibility::Public => println!("public"),
348-
hir::Visibility::Crate => println!("visible crate wide"),
348+
hir::Visibility::Crate(_) => println!("visible crate wide"),
349349
hir::Visibility::Restricted { ref path, .. } => println!(
350350
"visible in module `{}`",
351351
print::to_string(print::NO_ANN, |s| s.print_path(path, false))

min_version.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
rustc 1.28.0-nightly (5bf68db6e 2018-05-28)
1+
rustc 1.28.0-nightly (4ecf12bf0 2018-06-02)
22
binary: rustc
3-
commit-hash: 5bf68db6ecda0dd4788311a41b5c763d35597c96
4-
commit-date: 2018-05-28
3+
commit-hash: 4ecf12bf0eb8386626ccdb5f721a7183ccc4eba6
4+
commit-date: 2018-06-02
55
host: x86_64-unknown-linux-gnu
66
release: 1.28.0-nightly
77
LLVM version: 6.0

0 commit comments

Comments
 (0)