Skip to content

Commit 422ae77

Browse files
committed
Auto merge of #3956 - rust-lang:beta-clog, r=phansch
Beta changelog Maintain a changelog for beta so the release team can easily include important additions in the release blog posts. r? @phansch, @oli-obk
2 parents b1f05de + 737e45a commit 422ae77

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,31 @@ All notable changes to this project will be documented in this file.
44

55
## Unreleased / In Rust Beta or Nightly
66

7-
[1fac380...master](https://github.com/rust-lang/rust-clippy/compare/1fac380...master)
7+
[eb9f9b1...master](https://github.com/rust-lang/rust-clippy/compare/eb9f9b1...master)
8+
9+
## Rust 1.35 (beta)
10+
[1fac380..37f5c1e](https://github.com/rust-lang/rust-clippy/compare/1fac380...37f5c1e)
11+
12+
* New lint: [`drop_bounds`] to detect `T: Drop` bounds
13+
* Rename `cyclomatic_complexity` to [`cognitive_complexity`], start work on making lint more practical for Rust code
14+
* Move [`get_unwrap`] to the restriction category
15+
* Improve suggestions for [`iter_cloned_collect`]
16+
* Improve suggestions for [`cast_lossless`] to suggest suffixed literals
17+
* Fix false positives in [`print_with_newline`] and [`write_with_newline`] pertaining to raw strings
18+
* Fix false positive in [`needless_range_loop`] pertaining to structs without a `.iter()`
19+
* Fix false positive in [`bool_comparison`] pertaining to non-bool types
20+
* Fix false positive in [`redundant_closure`] pertaining to differences in borrows
21+
* Fix false positive in [`option_map_unwrap_or`] on non-copy types
22+
* Fix false positives in [`missing_const_for_fn`] pertaining to macros and trait method impls
23+
* Fix false positive in [`needless_pass_by_value`] pertaining to procedural macros
24+
* Fix false positive in [`needless_continue`] pertaining to loop labels
25+
* Fix false positive for [`boxed_local`] pertaining to arguments moved into closures
26+
* Fix false positive for [`use_self`] in nested functions
27+
* Fix suggestion for [`expect_fun_call`] (https://github.com/rust-lang/rust-clippy/pull/3846)
28+
* Fix suggestion for [`explicit_counter_loop`] to deal with parenthesizing range variables
29+
* Fix suggestion for [`single_char_pattern`] to correctly escape single quotes
30+
* Avoid triggering [`redundant_closure`] in macros
31+
* ICE fixes: [#3805](https://github.com/rust-lang/rust-clippy/pull/3805), [#3772](https://github.com/rust-lang/rust-clippy/pull/3772), [#3741](https://github.com/rust-lang/rust-clippy/pull/3741)
832

933
## Rust 1.34 (2019-04-10)
1034

0 commit comments

Comments
 (0)