Browse Source

Update contributors

pull/426/head
Christoph Ruegg 10 years ago
parent
commit
fc44034a5f
  1. 9
      CONTRIBUTORS.md
  2. 2
      build.fsx

9
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) - Jurgen Van Gael (@jvangael)
- Alexander Karatarakis - Alexander Karatarakis
- Thomas Ibel - Thomas Ibel
- Yoonku Hwang
- Gustavo Guerra - Gustavo Guerra
- Kuan Bartel - Kuan Bartel
- Alexander Täschner - Alexander Täschner
@ -28,6 +29,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- manyue - manyue
- David Prince - David Prince
- Larz White - Larz White
- Frank A. Krueger
- Andriy Bratiychuk - Andriy Bratiychuk
- Jack Pappas - Jack Pappas
- Phil Cleveland - Phil Cleveland
@ -42,10 +44,12 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Gauthier Segay - Gauthier Segay
- Hythem Sidky - Hythem Sidky
- John C Barstow - John C Barstow
- Jon Smit
- Justin Needham - Justin Needham
- Patrick van der Velde - Patrick van der Velde
- Robin Neatherway - Robin Neatherway
- Andrew Kazyrevich - Andrew Kazyrevich
- Arthur
- Ethar Alali - Ethar Alali
- Feodor Fitsner - Feodor Fitsner
- Iain McDonald - Iain McDonald
@ -57,6 +61,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Gregor959 - Gregor959
- IUser - IUser
- Iain Sproat - Iain Sproat
- Igor K
- Jeff Mastry - Jeff Mastry
- Joel Sleppy - Joel Sleppy
- Kosei ABE - Kosei ABE
@ -65,6 +70,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Max Malook - Max Malook
- Mirth Hickford - Mirth Hickford
- Paul Varkey - Paul Varkey
- Sergey Kosukhin
- Sunny Ahuwanya - Sunny Ahuwanya
- Till Hoffmann - Till Hoffmann
- Tomas Petricek - Tomas Petricek
@ -73,8 +79,11 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Volker Breuer - Volker Breuer
- Baltazar Bieniek - Baltazar Bieniek
- bstrausser - bstrausser
- Florian Wechsung
- grovesNL - grovesNL
- liuzh
- logophobia - logophobia
- Matthew Peacock
- mjmckp - mjmckp
- nyuriks - nyuriks
- seahearman - seahearman

2
build.fsx

@ -858,7 +858,7 @@ let publishReleaseTag title prefix version notes =
// inspired by Deedle/tpetricek // inspired by Deedle/tpetricek
let tagName = prefix + "v" + version let tagName = prefix + "v" + version
let tagMessage = String.concat Environment.NewLine [title + " v" + version; ""; notes ] 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" Git.CommandHelper.runSimpleGitCommand "." cmd |> printfn "%s"
let _, remotes, _ = Git.CommandHelper.runGitCommand "." "remote -v" let _, remotes, _ = Git.CommandHelper.runGitCommand "." "remote -v"
let main = remotes |> Seq.find (fun s -> s.Contains("(push)") && s.Contains("mathnet/mathnet-numerics")) let main = remotes |> Seq.find (fun s -> s.Contains("(push)") && s.Contains("mathnet/mathnet-numerics"))

Loading…
Cancel
Save