Skip to content

Commit a3bf9d1

Browse files
committed
Auto merge of #8137 - flip1995:changelog, r=Manishearth
Fix commits and formatting of CHANGELOG.md r? `@Manishearth` Follow up to #8136 I think the beta commit update didn't take the backport we've done into account. I fixed the commit ranges. And while I was at it, I also applied my usual formatting to the changelog entries. changelog: none
2 parents 0da30f1 + adcd3de commit a3bf9d1

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

CHANGELOG.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ document.
66

77
## Unreleased / In Rust Nightly
88

9-
[e181011...master](https://github.com/rust-lang/rust-clippy/compare/b7f3f7f...master)
9+
[e181011...master](https://github.com/rust-lang/rust-clippy/compare/e181011...master)
1010

1111
## Rust 1.58 (beta)
1212

1313
Current beta, release 2022-01-13
1414

15-
[b7f3f7f..e181011](https://github.com/rust-lang/rust-clippy/compare/b7f3f7f..e181011)
15+
[00e31fa...e181011](https://github.com/rust-lang/rust-clippy/compare/00e31fa...e181011)
1616

1717
### New lints
1818

@@ -33,7 +33,6 @@ Current beta, release 2022-01-13
3333
* [`string_slice`]
3434
[#7878](https://github.com/rust-lang/rust-clippy/pull/7878)
3535

36-
3736
### Moves or deprecations of lints
3837

3938
* Move [`non_send_fields_in_send_ty`] to `suspicious`
@@ -62,22 +61,22 @@ Current beta, release 2022-01-13
6261
[#7795](https://github.com/rust-lang/rust-clippy/pull/7795)
6362
* Avoid [`eq_op`] in test functions
6463
[#7811](https://github.com/rust-lang/rust-clippy/pull/7811)
65-
* [`cast_possible_truncation`] no longer lints when cast is coming from `signum` method call
66-
[#7850](https://github.com/rust-lang/rust-clippy/pull/7850)
64+
* [`cast_possible_truncation`] no longer lints when cast is coming from `signum`
65+
method call [#7850](https://github.com/rust-lang/rust-clippy/pull/7850)
6766
* [`match_str_case_mismatch`] no longer lints on uncased characters
6867
[#7865](https://github.com/rust-lang/rust-clippy/pull/7865)
6968
* [`ptr_arg`] no longer lints references to type aliases
7069
[#7890](https://github.com/rust-lang/rust-clippy/pull/7890)
7170
* [`missing_safety_doc`] now also accepts "implementation safety" headers
7271
[#7856](https://github.com/rust-lang/rust-clippy/pull/7856)
73-
* [`missing_safety_doc`] no longer lints if any parent has `#[doc(hidden)]` attribute
74-
[#7849](https://github.com/rust-lang/rust-clippy/pull/7849)
72+
* [`missing_safety_doc`] no longer lints if any parent has `#[doc(hidden)]`
73+
attribute [#7849](https://github.com/rust-lang/rust-clippy/pull/7849)
7574
* [`if_not_else`] now ignores else-if statements
7675
[#7895](https://github.com/rust-lang/rust-clippy/pull/7895)
77-
* Avoid linting [`cast_possible_truncation`] on bit-reducing operations
76+
* Avoid linting [`cast_possible_truncation`] on bit-reducing operations
7877
[#7819](https://github.com/rust-lang/rust-clippy/pull/7819)
79-
* Avoid linting [`field_reassign_with_default`] when `Drop` and `Copy` are involved
80-
[#7794](https://github.com/rust-lang/rust-clippy/pull/7794)
78+
* Avoid linting [`field_reassign_with_default`] when `Drop` and `Copy` are
79+
involved [#7794](https://github.com/rust-lang/rust-clippy/pull/7794)
8180
* [`unnecessary_sort_by`] now checks if argument implements `Ord` trait
8281
[#7824](https://github.com/rust-lang/rust-clippy/pull/7824)
8382
* Fix false positive in [`match_overlapping_arm`]
@@ -89,8 +88,8 @@ Current beta, release 2022-01-13
8988

9089
* Keep an initial `::` when [`doc_markdown`] suggests to use ticks
9190
[#7916](https://github.com/rust-lang/rust-clippy/pull/7916)
92-
* Add a machine applicable suggestion for the [`doc_markdown`] missing backticks lint
93-
[#7904](https://github.com/rust-lang/rust-clippy/pull/7904)
91+
* Add a machine applicable suggestion for the [`doc_markdown`] missing backticks
92+
lint [#7904](https://github.com/rust-lang/rust-clippy/pull/7904)
9493
* [`equatable_if_let`] no longer expands macros in the suggestion
9594
[#7788](https://github.com/rust-lang/rust-clippy/pull/7788)
9695
* Make [`shadow_reuse`] suggestion less verbose
@@ -105,7 +104,8 @@ Current beta, release 2022-01-13
105104

106105
### Documentation improvements
107106

108-
* Fixed naive doc formatting for `#[must_use]` lints ([`must_use_unit`], [`double_must_use`], [`must_use_candidate`], [`let_underscore_must_use`])
107+
* Fixed naive doc formatting for `#[must_use]` lints ([`must_use_unit`],
108+
[`double_must_use`], [`must_use_candidate`], [`let_underscore_must_use`])
109109
[#7827](https://github.com/rust-lang/rust-clippy/pull/7827)
110110
* Fix typo in example for [`match_result_ok`]
111111
[#7815](https://github.com/rust-lang/rust-clippy/pull/7815)
@@ -114,19 +114,19 @@ Current beta, release 2022-01-13
114114

115115
* Allow giving reasons for [`disallowed_types`]
116116
[#7791](https://github.com/rust-lang/rust-clippy/pull/7791)
117-
* Fix [`manual_assert`] and [`match_wild_err_arm`] for `#![no_std]` and Rust 2021.
118-
[#7851](https://github.com/rust-lang/rust-clippy/pull/7851)
119-
* Fix regression in [`semicolon_if_nothing_returned`] on macros containing while loops
120-
[#7789](https://github.com/rust-lang/rust-clippy/pull/7789)
121-
* Added a new configuration `literal-suffix-style` to enforce a certain style writing [`unseparated_literal_suffix`]
117+
* Fix [`manual_assert`] and [`match_wild_err_arm`] for `#![no_std]` and Rust
118+
2021. [#7851](https://github.com/rust-lang/rust-clippy/pull/7851)
119+
* Fix regression in [`semicolon_if_nothing_returned`] on macros containing while
120+
loops [#7789](https://github.com/rust-lang/rust-clippy/pull/7789)
121+
* Added a new configuration `literal-suffix-style` to enforce a certain style
122+
writing [`unseparated_literal_suffix`]
122123
[#7726](https://github.com/rust-lang/rust-clippy/pull/7726)
123124

124-
125125
## Rust 1.57
126126

127-
Current stable
127+
Current stable, released 2021-12-02
128128

129-
[7bfc26e...b7f3f7f](https://github.com/rust-lang/rust-clippy/compare/7bfc26e...b7f3f7f)
129+
[7bfc26e...00e31fa](https://github.com/rust-lang/rust-clippy/compare/7bfc26e...00e31fa)
130130

131131
### New Lints
132132

@@ -275,7 +275,7 @@ Current stable
275275

276276
## Rust 1.56
277277

278-
Current stable, released 2021-10-21
278+
Released 2021-10-21
279279

280280
[74d1561...7bfc26e](https://github.com/rust-lang/rust-clippy/compare/74d1561...7bfc26e)
281281

0 commit comments

Comments
 (0)