mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
Version bump
This commit is contained in:
parent
1ba658772a
commit
1c6c79f92c
@ -1,6 +1,9 @@
|
||||
# Change Log
|
||||
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
|
||||
* 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
|
||||
[`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_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_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
|
||||
|
@ -2,7 +2,7 @@ cargo-features = ["edition"]
|
||||
|
||||
[package]
|
||||
name = "clippy"
|
||||
version = "0.0.206"
|
||||
version = "0.0.207"
|
||||
authors = [
|
||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||
"Andre Bogus <bogusandre@gmail.com>",
|
||||
@ -40,7 +40,7 @@ path = "src/driver.rs"
|
||||
|
||||
[dependencies]
|
||||
# begin automatic update
|
||||
clippy_lints = { version = "0.0.206", path = "clippy_lints" }
|
||||
clippy_lints = { version = "0.0.207", path = "clippy_lints" }
|
||||
# end automatic update
|
||||
regex = "1"
|
||||
semver = "0.9"
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
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:
|
||||
|
||||
|
@ -3,7 +3,7 @@ cargo-features = ["edition"]
|
||||
[package]
|
||||
name = "clippy_lints"
|
||||
# begin automatic update
|
||||
version = "0.0.206"
|
||||
version = "0.0.207"
|
||||
# end automatic update
|
||||
authors = [
|
||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||
|
@ -53,7 +53,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
||||
println!("impl item `{}`", item.name);
|
||||
match item.vis {
|
||||
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!(
|
||||
"visible in module `{}`",
|
||||
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);
|
||||
match item.vis {
|
||||
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!(
|
||||
"visible in module `{}`",
|
||||
print::to_string(print::NO_ANN, |s| s.print_path(path, false))
|
||||
|
@ -1,7 +1,7 @@
|
||||
rustc 1.28.0-nightly (5bf68db6e 2018-05-28)
|
||||
rustc 1.28.0-nightly (4ecf12bf0 2018-06-02)
|
||||
binary: rustc
|
||||
commit-hash: 5bf68db6ecda0dd4788311a41b5c763d35597c96
|
||||
commit-date: 2018-05-28
|
||||
commit-hash: 4ecf12bf0eb8386626ccdb5f721a7183ccc4eba6
|
||||
commit-date: 2018-06-02
|
||||
host: x86_64-unknown-linux-gnu
|
||||
release: 1.28.0-nightly
|
||||
LLVM version: 6.0
|
||||
|
Loading…
Reference in New Issue
Block a user