From c9c8d902d8715a850f937664f6d13bf41d9223dd Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 20 Aug 2019 12:40:33 -0700 Subject: [PATCH] Actually use mailmap file when generating AUTHORS --- .mailmap | 18 ++++++++++-------- AUTHORS | 4 +--- scripts/update-authors.sh | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.mailmap b/.mailmap index a14e7b8287bc..725a59da6559 100644 --- a/.mailmap +++ b/.mailmap @@ -2,13 +2,14 @@ Alex K. Wolfe Andrew Bradley Andrew Lunny Arlo Breault -Ashley Williams Ashley Williams +Ashley Williams Benjamin Coe Benjamin Coe Brian White Cedric Nelson Charlie Robbins +Claudia Hernández Dalmais Maxence Danila Gerasimov Dave Galbraith @@ -22,22 +23,23 @@ Evan Lucas Evan Lucas Faiq Raza Forbes Lindesay -Forrest L Norvell +Forrest L Norvell +Forrest L Norvell Gabriel Barros Geoff Flarity Gregers Gram Rygg Ifeanyi Oraelosi -Isaac Z. Schlueter -Isaac Z. Schlueter -isaacs +isaacs +isaacs +isaacs Jake Verbaten James Sanders James Treworgy Jason Smith Jed Fox +Jonas Weber Joshua Bennett Joshua Bennett -Jonas Weber Julien Meddah Kat Marchán Kevin Lorenz @@ -51,12 +53,12 @@ Max Goodman Maxim Bogushevich Maximilian Antoni Michael Hayes -Nicolas Morel Misha Kaletsky +Nicolas Morel Olivier Melcher Ra'Shaun Stovall -Rebecca Turner Rebecca Turner +Rebecca Turner Ryan Emery Sam Mikes Sreenivas Alapati diff --git a/AUTHORS b/AUTHORS index 8d732b83e60b..95f7e9e7e712 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1,4 @@ # Authors sorted by whether or not they're me -Isaac Z. Schlueter isaacs Steve Steiner Mikeal Rogers @@ -644,13 +643,12 @@ Florian Keller Sreeram Jayan --get raywu0123 -isaacs Iván Reinoso García Roy Marples Robert James Gabriel John Firebaugh Kitten King -claudiahdz +Claudia Hernández Artem Sapegin Márton Salomváry gall0ws diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh index 75a6e549b16d..ac7b99137a98 100755 --- a/scripts/update-authors.sh +++ b/scripts/update-authors.sh @@ -1,6 +1,6 @@ #!/bin/sh -git log --reverse --format='%aN <%aE>' | perl -wnE ' +git log --use-mailmap --reverse --format='%aN <%aE>' | perl -wnE ' BEGIN { say "# Authors sorted by whether or not they\x27re me"; }