Version bump

This commit is contained in:
Oliver Schneider
2018-06-25 18:18:50 +02:00
parent d4618e0879
commit 9f8624e5bf
6 changed files with 14 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.210
* Rustup to *rustc 1.28.0-nightly (01cc982e9 2018-06-24)*
## 0.0.209 ## 0.0.209
* Rustup to *rustc 1.28.0-nightly (523097979 2018-06-18)* * Rustup to *rustc 1.28.0-nightly (523097979 2018-06-18)*
@@ -638,6 +641,7 @@ All notable changes to this project will be documented in this file.
[`crosspointer_transmute`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#crosspointer_transmute [`crosspointer_transmute`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#crosspointer_transmute
[`cyclomatic_complexity`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cyclomatic_complexity [`cyclomatic_complexity`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cyclomatic_complexity
[`decimal_literal_representation`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#decimal_literal_representation [`decimal_literal_representation`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#decimal_literal_representation
[`default_trait_access`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#default_trait_access
[`deprecated_semver`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deprecated_semver [`deprecated_semver`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deprecated_semver
[`deref_addrof`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deref_addrof [`deref_addrof`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deref_addrof
[`derive_hash_xor_eq`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#derive_hash_xor_eq [`derive_hash_xor_eq`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
@@ -778,6 +782,7 @@ All notable changes to this project will be documented in this file.
[`out_of_bounds_indexing`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#out_of_bounds_indexing [`out_of_bounds_indexing`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#out_of_bounds_indexing
[`overflow_check_conditional`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#overflow_check_conditional [`overflow_check_conditional`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#overflow_check_conditional
[`panic_params`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#panic_params [`panic_params`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#panic_params
[`panicking_unwrap`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#panicking_unwrap
[`partialeq_ne_impl`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#partialeq_ne_impl [`partialeq_ne_impl`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#partialeq_ne_impl
[`possible_missing_comma`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#possible_missing_comma [`possible_missing_comma`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#possible_missing_comma
[`precedence`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#precedence [`precedence`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#precedence

View File

@@ -2,7 +2,7 @@ cargo-features = ["edition"]
[package] [package]
name = "clippy" name = "clippy"
version = "0.0.209" version = "0.0.210"
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.209", path = "clippy_lints" } clippy_lints = { version = "0.0.210", path = "clippy_lints" }
# end automatic update # end automatic update
regex = "1" regex = "1"
semver = "0.9" semver = "0.9"

View File

@@ -9,7 +9,7 @@ We are currently in the process of discussing Clippy 1.0 via the RFC process in
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 268 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html) [There are 270 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.209" version = "0.0.210"
# end automatic update # end automatic update
authors = [ authors = [
"Manish Goregaokar <manishsmail@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>",

View File

@@ -499,7 +499,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
reg.register_lint_group("clippy", vec![ reg.register_lint_group("clippy", vec![
approx_const::APPROX_CONSTANT, approx_const::APPROX_CONSTANT,
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
assign_ops::ASSIGN_OP_PATTERN, assign_ops::ASSIGN_OP_PATTERN,
assign_ops::MISREFACTORED_ASSIGN_OP, assign_ops::MISREFACTORED_ASSIGN_OP,
attrs::DEPRECATED_SEMVER, attrs::DEPRECATED_SEMVER,
@@ -549,6 +548,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
identity_conversion::IDENTITY_CONVERSION, identity_conversion::IDENTITY_CONVERSION,
identity_op::IDENTITY_OP, identity_op::IDENTITY_OP,
if_let_redundant_pattern_matching::IF_LET_REDUNDANT_PATTERN_MATCHING, if_let_redundant_pattern_matching::IF_LET_REDUNDANT_PATTERN_MATCHING,
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
infallible_destructuring_match::INFALLIBLE_DESTRUCTURING_MATCH, infallible_destructuring_match::INFALLIBLE_DESTRUCTURING_MATCH,
infinite_iter::INFINITE_ITER, infinite_iter::INFINITE_ITER,
inline_fn_without_body::INLINE_FN_WITHOUT_BODY, inline_fn_without_body::INLINE_FN_WITHOUT_BODY,
@@ -862,7 +862,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
reg.register_lint_group("clippy_correctness", vec![ reg.register_lint_group("clippy_correctness", vec![
approx_const::APPROX_CONSTANT, approx_const::APPROX_CONSTANT,
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
attrs::DEPRECATED_SEMVER, attrs::DEPRECATED_SEMVER,
attrs::USELESS_ATTRIBUTE, attrs::USELESS_ATTRIBUTE,
bit_mask::BAD_BIT_MASK, bit_mask::BAD_BIT_MASK,
@@ -880,6 +879,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
erasing_op::ERASING_OP, erasing_op::ERASING_OP,
formatting::POSSIBLE_MISSING_COMMA, formatting::POSSIBLE_MISSING_COMMA,
functions::NOT_UNSAFE_PTR_ARG_DEREF, functions::NOT_UNSAFE_PTR_ARG_DEREF,
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
infinite_iter::INFINITE_ITER, infinite_iter::INFINITE_ITER,
inline_fn_without_body::INLINE_FN_WITHOUT_BODY, inline_fn_without_body::INLINE_FN_WITHOUT_BODY,
invalid_ref::INVALID_REF, invalid_ref::INVALID_REF,

View File

@@ -1,7 +1,7 @@
rustc 1.28.0-nightly (523097979 2018-06-18) rustc 1.28.0-nightly (01cc982e9 2018-06-24)
binary: rustc binary: rustc
commit-hash: 5230979794db209de492b3f7cc688020b72bc7c6 commit-hash: 01cc982e936120acb0424e41de14e42ba2d88c6f
commit-date: 2018-06-18 commit-date: 2018-06-24
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