Version bump

This commit is contained in:
Oliver Schneider 2018-06-03 08:59:10 +02:00
parent 1ba658772a
commit 1c6c79f92c
6 changed files with 13 additions and 9 deletions

View File

@ -1,6 +1,9 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 0.0.207
* Rustup to *rustc 1.28.0-nightly (4ecf12bf0 2018-06-02)*
## 0.0.206 ## 0.0.206
* Rustup to *rustc 1.28.0-nightly (5bf68db6e 2018-05-28)* * Rustup to *rustc 1.28.0-nightly (5bf68db6e 2018-05-28)*
@ -726,6 +729,7 @@ All notable changes to this project will be documented in this file.
[`module_inception`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#module_inception [`module_inception`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#module_inception
[`modulo_one`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#modulo_one [`modulo_one`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#modulo_one
[`multiple_crate_versions`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#multiple_crate_versions [`multiple_crate_versions`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#multiple_crate_versions
[`multiple_inherent_impl`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#multiple_inherent_impl
[`mut_from_ref`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_from_ref [`mut_from_ref`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_from_ref
[`mut_mut`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_mut [`mut_mut`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_mut
[`mut_range_bound`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_range_bound [`mut_range_bound`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#mut_range_bound

View File

@ -2,7 +2,7 @@ cargo-features = ["edition"]
[package] [package]
name = "clippy" name = "clippy"
version = "0.0.206" version = "0.0.207"
authors = [ authors = [
"Manish Goregaokar <manishsmail@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>", "Andre Bogus <bogusandre@gmail.com>",
@ -40,7 +40,7 @@ path = "src/driver.rs"
[dependencies] [dependencies]
# begin automatic update # begin automatic update
clippy_lints = { version = "0.0.206", path = "clippy_lints" } clippy_lints = { version = "0.0.207", path = "clippy_lints" }
# end automatic update # end automatic update
regex = "1" regex = "1"
semver = "0.9" semver = "0.9"

View File

@ -7,7 +7,7 @@
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code. A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
[There are 260 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html) [There are 261 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
We have a bunch of lint categories to allow you to choose how much clippy is supposed to ~~annoy~~ help you: We have a bunch of lint categories to allow you to choose how much clippy is supposed to ~~annoy~~ help you:

View File

@ -3,7 +3,7 @@ cargo-features = ["edition"]
[package] [package]
name = "clippy_lints" name = "clippy_lints"
# begin automatic update # begin automatic update
version = "0.0.206" version = "0.0.207"
# end automatic update # end automatic update
authors = [ authors = [
"Manish Goregaokar <manishsmail@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>",

View File

@ -53,7 +53,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
println!("impl item `{}`", item.name); println!("impl item `{}`", item.name);
match item.vis { match item.vis {
hir::Visibility::Public => println!("public"), hir::Visibility::Public => println!("public"),
hir::Visibility::Crate => println!("visible crate wide"), hir::Visibility::Crate(_) => println!("visible crate wide"),
hir::Visibility::Restricted { ref path, .. } => println!( hir::Visibility::Restricted { ref path, .. } => println!(
"visible in module `{}`", "visible in module `{}`",
print::to_string(print::NO_ANN, |s| s.print_path(path, false)) print::to_string(print::NO_ANN, |s| s.print_path(path, false))
@ -345,7 +345,7 @@ fn print_item(cx: &LateContext, item: &hir::Item) {
println!("item `{}`", item.name); println!("item `{}`", item.name);
match item.vis { match item.vis {
hir::Visibility::Public => println!("public"), hir::Visibility::Public => println!("public"),
hir::Visibility::Crate => println!("visible crate wide"), hir::Visibility::Crate(_) => println!("visible crate wide"),
hir::Visibility::Restricted { ref path, .. } => println!( hir::Visibility::Restricted { ref path, .. } => println!(
"visible in module `{}`", "visible in module `{}`",
print::to_string(print::NO_ANN, |s| s.print_path(path, false)) print::to_string(print::NO_ANN, |s| s.print_path(path, false))

View File

@ -1,7 +1,7 @@
rustc 1.28.0-nightly (5bf68db6e 2018-05-28) rustc 1.28.0-nightly (4ecf12bf0 2018-06-02)
binary: rustc binary: rustc
commit-hash: 5bf68db6ecda0dd4788311a41b5c763d35597c96 commit-hash: 4ecf12bf0eb8386626ccdb5f721a7183ccc4eba6
commit-date: 2018-05-28 commit-date: 2018-06-02
host: x86_64-unknown-linux-gnu host: x86_64-unknown-linux-gnu
release: 1.28.0-nightly release: 1.28.0-nightly
LLVM version: 6.0 LLVM version: 6.0