Skip to content

Commit fb27517

Browse files
committed
Auto merge of #6878 - flip1995:authors, r=Manishearth
Set Clippy authors to "The Rust Clippy Developers" Clippy has grown enough, that putting specific people in the "authors" field isn't warranted anymore. As a heads-up: `@Manishearth` `@llogiq` `@birkenfeld` `@mcarton` `@oli-obk` `@phansch` `@matthiaskrgr` your names will be removed from one or more of the `Cargo.toml` files of Clippy. This of course does not mean that we value your previous work on Clippy any less ❤️ As per our discussion in today's meeting: https://rust-lang.zulipchat.com/#narrow/stream/257328-clippy/topic/Meeting.202021-03-09/near/229502514 changelog: none
2 parents 2b781c9 + 8e1ce48 commit fb27517

File tree

6 files changed

+6
-24
lines changed

6 files changed

+6
-24
lines changed

Cargo.toml

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
[package]
22
name = "clippy"
33
version = "0.1.52"
4-
authors = [
5-
"Manish Goregaokar <[email protected]>",
6-
"Andre Bogus <[email protected]>",
7-
"Georg Brandl <[email protected]>",
8-
"Martin Carton <[email protected]>",
9-
"Oliver Schneider <[email protected]>"
10-
]
4+
authors = ["The Rust Clippy Developers"]
115
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
126
repository = "https://github.com/rust-lang/rust-clippy"
137
readme = "README.md"

clippy_dev/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[package]
22
name = "clippy_dev"
33
version = "0.0.1"
4-
authors = ["Philipp Hansch <[email protected]>"]
4+
authors = ["The Rust Clippy Developers"]
55
edition = "2018"
66

7-
87
[dependencies]
98
bytecount = "0.6"
109
clap = "2.33"

clippy_dummy/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clippy_dummy" # rename to clippy before publishing
33
version = "0.0.303"
4-
authors = ["Manish Goregaokar <[email protected]>"]
4+
authors = ["The Rust Clippy Developers"]
55
edition = "2018"
66
readme = "crates-readme.md"
77
description = "A bunch of helpful lints to avoid common pitfalls in Rust."

clippy_lints/Cargo.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@ name = "clippy_lints"
33
# begin automatic update
44
version = "0.1.52"
55
# end automatic update
6-
authors = [
7-
"Manish Goregaokar <[email protected]>",
8-
"Andre Bogus <[email protected]>",
9-
"Georg Brandl <[email protected]>",
10-
"Martin Carton <[email protected]>",
11-
]
6+
authors = ["The Rust Clippy Developers"]
127
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
138
repository = "https://github.com/rust-lang/rust-clippy"
149
readme = "README.md"

mini-macro/Cargo.toml

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
[package]
22
name = "clippy-mini-macro-test"
33
version = "0.2.0"
4-
authors = [
5-
"Manish Goregaokar <[email protected]>",
6-
"Andre Bogus <[email protected]>",
7-
"Georg Brandl <[email protected]>",
8-
"Martin Carton <[email protected]>",
9-
"Oliver Schneider <[email protected]>"
10-
]
4+
authors = ["The Rust Clippy Developers"]
115
license = "MIT OR Apache-2.0"
126
description = "A macro to test clippy's procedural macro checks"
137
repository = "https://github.com/rust-lang/rust-clippy"

rustc_tools_util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustc_tools_util"
33
version = "0.2.0"
4-
authors = ["Matthias Krüger <[email protected]>"]
4+
authors = ["The Rust Clippy Developers"]
55
description = "small helper to generate version information for git packages"
66
repository = "https://github.com/rust-lang/rust-clippy"
77
readme = "README.md"

0 commit comments

Comments
 (0)