Skip to content

Commit c89c5d2

Browse files
committed
Merge remote-tracking branch 'origin/master' into examples
2 parents 7b717d3 + 5f1120b commit c89c5d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1721
-663
lines changed

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,35 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## 0.0.84 — TBD
4+
## 0.0.90 — 2016-09-09
5+
* Rustup to *rustc 1.13.0-nightly (f1f40f850 2016-09-09)*
6+
7+
## 0.0.89 — 2016-09-06
8+
* Rustup to *rustc 1.13.0-nightly (cbe4de78e 2016-09-05)*
9+
10+
## 0.0.88 — 2016-09-04
11+
* Rustup to *rustc 1.13.0-nightly (70598e04f 2016-09-03)*
12+
* The following lints are not new but were only usable through the `clippy`
13+
lint groups: [`filter_next`], [`for_loop_over_option`],
14+
[`for_loop_over_result`] and [`match_overlapping_arm`]. You should now be
15+
able to `#[allow/deny]` them individually and they are available directly
16+
through [`cargo clippy`].
17+
18+
## 0.0.87 — 2016-08-31
19+
* Rustup to *rustc 1.13.0-nightly (eac41469d 2016-08-30)*
20+
* New lints: [`builtin_type_shadow`]
21+
* Fix FP in [`zero_prefixed_literal`] and `0b`/`0o`
22+
23+
## 0.0.86 — 2016-08-28
24+
* Rustup to *rustc 1.13.0-nightly (a23064af5 2016-08-27)*
25+
* New lints: [`missing_docs_in_private_items`], [`zero_prefixed_literal`]
26+
27+
## 0.0.85 — 2016-08-19
28+
* Fix ICE with [`useless_attribute`]
29+
* [`useless_attribute`] ignores [`unused_imports`] on `use` statements
30+
31+
## 0.0.84 — 2016-08-18
32+
* Rustup to *rustc 1.13.0-nightly (aef6971ca 2016-08-17)*
533

634
## 0.0.83 — 2016-08-17
735
* Rustup to *rustc 1.12.0-nightly (1bf5fa326 2016-08-16)*
@@ -166,6 +194,7 @@ All notable changes to this project will be documented in this file.
166194
[`bool_comparison`]: https://github.com/Manishearth/rust-clippy/wiki#bool_comparison
167195
[`box_vec`]: https://github.com/Manishearth/rust-clippy/wiki#box_vec
168196
[`boxed_local`]: https://github.com/Manishearth/rust-clippy/wiki#boxed_local
197+
[`builtin_type_shadow`]: https://github.com/Manishearth/rust-clippy/wiki#builtin_type_shadow
169198
[`cast_possible_truncation`]: https://github.com/Manishearth/rust-clippy/wiki#cast_possible_truncation
170199
[`cast_possible_wrap`]: https://github.com/Manishearth/rust-clippy/wiki#cast_possible_wrap
171200
[`cast_precision_loss`]: https://github.com/Manishearth/rust-clippy/wiki#cast_precision_loss
@@ -175,12 +204,14 @@ All notable changes to this project will be documented in this file.
175204
[`clone_double_ref`]: https://github.com/Manishearth/rust-clippy/wiki#clone_double_ref
176205
[`clone_on_copy`]: https://github.com/Manishearth/rust-clippy/wiki#clone_on_copy
177206
[`cmp_nan`]: https://github.com/Manishearth/rust-clippy/wiki#cmp_nan
207+
[`cmp_null`]: https://github.com/Manishearth/rust-clippy/wiki#cmp_null
178208
[`cmp_owned`]: https://github.com/Manishearth/rust-clippy/wiki#cmp_owned
179209
[`collapsible_if`]: https://github.com/Manishearth/rust-clippy/wiki#collapsible_if
180210
[`crosspointer_transmute`]: https://github.com/Manishearth/rust-clippy/wiki#crosspointer_transmute
181211
[`cyclomatic_complexity`]: https://github.com/Manishearth/rust-clippy/wiki#cyclomatic_complexity
182212
[`deprecated_semver`]: https://github.com/Manishearth/rust-clippy/wiki#deprecated_semver
183213
[`derive_hash_xor_eq`]: https://github.com/Manishearth/rust-clippy/wiki#derive_hash_xor_eq
214+
[`diverging_sub_expression`]: https://github.com/Manishearth/rust-clippy/wiki#diverging_sub_expression
184215
[`doc_markdown`]: https://github.com/Manishearth/rust-clippy/wiki#doc_markdown
185216
[`double_neg`]: https://github.com/Manishearth/rust-clippy/wiki#double_neg
186217
[`drop_ref`]: https://github.com/Manishearth/rust-clippy/wiki#drop_ref
@@ -232,6 +263,7 @@ All notable changes to this project will be documented in this file.
232263
[`mem_forget`]: https://github.com/Manishearth/rust-clippy/wiki#mem_forget
233264
[`min_max`]: https://github.com/Manishearth/rust-clippy/wiki#min_max
234265
[`misrefactored_assign_op`]: https://github.com/Manishearth/rust-clippy/wiki#misrefactored_assign_op
266+
[`missing_docs_in_private_items`]: https://github.com/Manishearth/rust-clippy/wiki#missing_docs_in_private_items
235267
[`mixed_case_hex_literals`]: https://github.com/Manishearth/rust-clippy/wiki#mixed_case_hex_literals
236268
[`module_inception`]: https://github.com/Manishearth/rust-clippy/wiki#module_inception
237269
[`modulo_one`]: https://github.com/Manishearth/rust-clippy/wiki#modulo_one
@@ -323,5 +355,6 @@ All notable changes to this project will be documented in this file.
323355
[`wrong_self_convention`]: https://github.com/Manishearth/rust-clippy/wiki#wrong_self_convention
324356
[`wrong_transmute`]: https://github.com/Manishearth/rust-clippy/wiki#wrong_transmute
325357
[`zero_divided_by_zero`]: https://github.com/Manishearth/rust-clippy/wiki#zero_divided_by_zero
358+
[`zero_prefixed_literal`]: https://github.com/Manishearth/rust-clippy/wiki#zero_prefixed_literal
326359
[`zero_width_space`]: https://github.com/Manishearth/rust-clippy/wiki#zero_width_space
327360
<!-- end autogenerated links to wiki -->

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.83"
3+
version = "0.0.90"
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.83", path = "clippy_lints" }
28+
clippy_lints = { version = "0.0.90", path = "clippy_lints" }
2929
# end automatic update
3030

3131
[dev-dependencies]

0 commit comments

Comments
 (0)