Skip to content

Commit 18e90d7

Browse files
committed
Bump to 0.0.101
1 parent 6201d17 commit 18e90d7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.101 — 2016-11-23
5+
* Update to *rustc 1.15.0-nightly (7b3eeea22 2016-11-21)*
6+
* New lint: [`string_extend_chars`]
7+
48
## 0.0.100 — 2016-11-20
59
* Update to *rustc 1.15.0-nightly (ac635aa95 2016-11-18)*
610

711
## 0.0.99 — 2016-11-18
812
* Update to rustc 1.15.0-nightly (0ed951993 2016-11-14)
13+
* New lint: [`get_unwrap`]
914

1015
## 0.0.98 — 2016-11-08
1116
* Fixes a an issue due to a change in how cargo handles `--sysroot`, which broke `cargo clippy`
@@ -16,6 +21,7 @@ All notable changes to this project will be documented in this file.
1621
compatibility.
1722
* `cargo clippy --help` is more helping (and less helpful :smile:)
1823
* Rustup to *rustc 1.14.0-nightly (5665bdf3e 2016-11-02)*
24+
* New lints: [`if_let_redundant_pattern_matching`], [`partialeq_ne_impl`]
1925

2026
## 0.0.96 — 2016-10-22
2127
* Rustup to *rustc 1.14.0-nightly (f09420685 2016-10-20)*

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.100"
3+
version = "0.0.101"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -25,7 +25,7 @@ test = false
2525

2626
[dependencies]
2727
# begin automatic update
28-
clippy_lints = { version = "0.0.100", path = "clippy_lints" }
28+
clippy_lints = { version = "0.0.101", path = "clippy_lints" }
2929
# end automatic update
3030

3131
[dev-dependencies]

clippy_lints/Cargo.toml

+1-1
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.100"
4+
version = "0.0.101"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

0 commit comments

Comments
 (0)