Skip to content

Commit 9e33a8b

Browse files
committed
update contributors list
1 parent 4313691 commit 9e33a8b

File tree

3 files changed

+82
-2
lines changed

3 files changed

+82
-2
lines changed

.mailmap

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ Tomer Doron <[email protected]> <[email protected]>
22
33
44
5-
5+
6+
Sébastien Stormacq <[email protected]> <[email protected]>

CONTRIBUTORS.txt

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,66 @@ needs to be listed here.
88
## COPYRIGHT HOLDERS
99

1010
- Apple Inc. (all contributors with '@apple.com')
11+
- Amazon.com, Inc. or its affiliates (all contributors with '@amazon.com')
1112

1213
### Contributors
1314

1415
- Adam Fowler <[email protected]>
16+
17+
- Alessio Buratti <[email protected]>
1518
- Andrea Scuderi <[email protected]>
19+
1620
- Brendan Kirchner <[email protected]>
1721
- Bryan Bartow <[email protected]>
1822
- Bryan Moffatt <[email protected]>
23+
- Camden Fullmer <[email protected]>
1924
- Christoph Walcher <[email protected]>
2025
- Colton Schlosser <[email protected]>
26+
- Cory Benfield <[email protected]>
27+
- Dmitry Platonov <[email protected]>
28+
- DwayneCoussement <[email protected]>
29+
- DwayneCoussement <[email protected]>
2130
- Eneko Alonso <[email protected]>
22-
- Fabian Fett <[email protected]>
31+
- Fabian Fett <[email protected]>
32+
- Filipp Fediakov <[email protected]>
33+
- Florent Morin <[email protected]>
34+
- Franz Busch <[email protected]>
35+
- Franz Busch <[email protected]>
2336
- George Barnett <[email protected]>
37+
- Jack Rosen <[email protected]>
38+
- Joannis Orlandos <[email protected]>
39+
- Joel Saltzman <[email protected]>
40+
- Johannes Bosecker <[email protected]>
2441
- Johannes Weiss <[email protected]>
42+
43+
- Juan A. Reyes <[email protected]>
44+
- Konrad `ktoso` Malawski <[email protected]>
45+
46+
- Marwane Koutar <[email protected]>
47+
- Matt Massicotte <[email protected]>
2548
- Max Desiatov <[email protected]>
49+
- Natan Rolnik <[email protected]>
2650
- Norman Maurer <[email protected]>
51+
- Paul Toffoloni <[email protected]>
52+
- Ralph Küpper <[email protected]>
2753
54+
- Stefan Nienhuis <[email protected]>
55+
- Sven A. Schmidt <[email protected]>
56+
- Sébastien Stormacq <[email protected]>
57+
- Tim Condon <[email protected]>
58+
2859
- Tomer Doron <[email protected]>
60+
- YR Chen <[email protected]>
61+
- Yim Lee <[email protected]>
2962
- Zhibin Cai <[email protected]>
63+
- aryan-25 <[email protected]>
64+
- dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
65+
- jsonfry <[email protected]>
66+
- mattcorey <[email protected]>
3067
- pmarrufo <[email protected]>
68+
- pokryfka <[email protected]>
69+
- pokryfka <[email protected]>
70+
3171
- tachyonics <[email protected]>
3272

3373
**Updating this list**
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/bin/bash
2+
##===----------------------------------------------------------------------===##
3+
##
4+
## This source file is part of the SwiftAWSLambdaRuntime open source project
5+
##
6+
## Copyright (c) 2017-2025 Apple Inc. and the SwiftAWSLambdaRuntime project authors
7+
## Licensed under Apache License v2.0
8+
##
9+
## See LICENSE.txt for license information
10+
## See CONTRIBUTORS.txt for the list of SwiftAWSLambdaRuntime project authors
11+
##
12+
## SPDX-License-Identifier: Apache-2.0
13+
##
14+
##===----------------------------------------------------------------------===##
15+
16+
set -eu
17+
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18+
contributors=$( cd "$here"/.. && git shortlog -es | cut -f2 | sed 's/^/- /' )
19+
20+
cat > "$here/../CONTRIBUTORS.txt" <<- EOF
21+
For the purpose of tracking copyright, this is the list of individuals and
22+
organizations who have contributed source code to SwiftAWSLambdaRuntime.
23+
24+
For employees of an organization/company where the copyright of work done
25+
by employees of that company is held by the company itself, only the company
26+
needs to be listed here.
27+
28+
## COPYRIGHT HOLDERS
29+
30+
- Apple Inc. (all contributors with '@apple.com')
31+
32+
### Contributors
33+
34+
$contributors
35+
36+
**Updating this list**
37+
38+
Please do not edit this file manually. It is generated using \`./scripts/generate_contributors_list.sh\`. If a name is misspelled or appearing multiple times: add an entry in \`./.mailmap\`
39+
EOF

0 commit comments

Comments
 (0)