From fc44034a5faf3abc20cda74fdf08fabc7bcf1ae6 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sat, 9 Jul 2016 19:03:19 +0200 Subject: [PATCH] Update contributors --- CONTRIBUTORS.md | 9 +++++++++ build.fsx | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index fd610935..a270f77f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,6 +19,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Jurgen Van Gael (@jvangael) - Alexander Karatarakis - Thomas Ibel +- Yoonku Hwang - Gustavo Guerra - Kuan Bartel - Alexander Täschner @@ -28,6 +29,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - manyue - David Prince - Larz White +- Frank A. Krueger - Andriy Bratiychuk - Jack Pappas - Phil Cleveland @@ -42,10 +44,12 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Gauthier Segay - Hythem Sidky - John C Barstow +- Jon Smit - Justin Needham - Patrick van der Velde - Robin Neatherway - Andrew Kazyrevich +- Arthur - Ethar Alali - Feodor Fitsner - Iain McDonald @@ -57,6 +61,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Gregor959 - IUser - Iain Sproat +- Igor K - Jeff Mastry - Joel Sleppy - Kosei ABE @@ -65,6 +70,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Max Malook - Mirth Hickford - Paul Varkey +- Sergey Kosukhin - Sunny Ahuwanya - Till Hoffmann - Tomas Petricek @@ -73,8 +79,11 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Volker Breuer - Baltazar Bieniek - bstrausser +- Florian Wechsung - grovesNL +- liuzh - logophobia +- Matthew Peacock - mjmckp - nyuriks - seahearman diff --git a/build.fsx b/build.fsx index b20f46ed..32f4dedf 100644 --- a/build.fsx +++ b/build.fsx @@ -858,7 +858,7 @@ let publishReleaseTag title prefix version notes = // inspired by Deedle/tpetricek let tagName = prefix + "v" + version let tagMessage = String.concat Environment.NewLine [title + " v" + version; ""; notes ] - let cmd = sprintf """tag -a %s -s -m "%s" """ tagName tagMessage + let cmd = sprintf """tag -a %s -m "%s" """ tagName tagMessage Git.CommandHelper.runSimpleGitCommand "." cmd |> printfn "%s" let _, remotes, _ = Git.CommandHelper.runGitCommand "." "remote -v" let main = remotes |> Seq.find (fun s -> s.Contains("(push)") && s.Contains("mathnet/mathnet-numerics"))