Bump version

This commit is contained in:
Oliver Schneider 2017-09-09 14:37:16 +02:00
parent edcf6e7e80
commit 81d32123f4
No known key found for this signature in database
GPG key ID: 1D5CB4FC597C3004
4 changed files with 8 additions and 7 deletions

View file

@ -1,9 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.
## Upcoming
## 0.0.158
* New lint: [`manual_memcpy`]
* [`cast_lossless`] no longer has redundant parentheses in its suggestions
* Update to *rustc 1.22.0-nightly (dead08cb3 2017-09-08)*
## 0.0.157 - 2017-09-04
* Update to *rustc 1.22.0-nightly (981ce7d8d 2017-09-03)*

6
Cargo.lock generated
View file

@ -1,6 +1,6 @@
[root]
name = "clippy_lints"
version = "0.0.157"
version = "0.0.158"
dependencies = [
"itertools 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
@ -73,11 +73,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "clippy"
version = "0.0.157"
version = "0.0.158"
dependencies = [
"cargo_metadata 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"clippy-mini-macro-test 0.1.0",
"clippy_lints 0.0.157",
"clippy_lints 0.0.158",
"compiletest_rs 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
"duct 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.157"
version = "0.0.158"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -31,7 +31,7 @@ path = "src/main.rs"
[dependencies]
# begin automatic update
clippy_lints = { version = "0.0.157", path = "clippy_lints" }
clippy_lints = { version = "0.0.158", path = "clippy_lints" }
# end automatic update
cargo_metadata = "0.2"

View file

@ -1,7 +1,7 @@
[package]
name = "clippy_lints"
# begin automatic update
version = "0.0.157"
version = "0.0.158"
# end automatic update
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",