Skip to content

Commit fae8a76

Browse files
committed
Bump to 0.0.177
1 parent bebc192 commit fae8a76

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.177
5+
* Rustup to *rustc 1.24.0-nightly (250b49205 2017-12-21)*
6+
* New lint: [`match_as_ref`]
7+
48
## 0.0.176
59
* Rustup to *rustc 1.24.0-nightly (0077d128d 2017-12-14)*
610

@@ -595,6 +599,7 @@ All notable changes to this project will be documented in this file.
595599
[`many_single_char_names`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#many_single_char_names
596600
[`map_clone`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#map_clone
597601
[`map_entry`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#map_entry
602+
[`match_as_ref`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#match_as_ref
598603
[`match_bool`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#match_bool
599604
[`match_overlapping_arm`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#match_overlapping_arm
600605
[`match_ref_pats`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#match_ref_pats

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.176"
3+
version = "0.0.177"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -37,7 +37,7 @@ path = "src/driver.rs"
3737

3838
[dependencies]
3939
# begin automatic update
40-
clippy_lints = { version = "0.0.176", path = "clippy_lints" }
40+
clippy_lints = { version = "0.0.177", path = "clippy_lints" }
4141
# end automatic update
4242
cargo_metadata = "0.2"
4343
regex = "0.2"

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clippy_lints"
33
# begin automatic update
4-
version = "0.0.176"
4+
version = "0.0.177"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

0 commit comments

Comments
 (0)