diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a270f77f..0a390050 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -22,13 +22,13 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Yoonku Hwang - Gustavo Guerra - Kuan Bartel +- Larz White - Alexander Täschner - Hani Medhat - MaLiN2223 - Matthew A. Johnson - manyue - David Prince -- Larz White - Frank A. Krueger - Andriy Bratiychuk - Jack Pappas @@ -56,10 +56,10 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Jon Larborn - Kyle Parrigan - borfudin +- Aixile - BenHewins - Dan - Gregor959 -- IUser - Iain Sproat - Igor K - Jeff Mastry diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 40452a5f..95084847 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,12 @@ +### 3.13.0 - 2016-08-18 +* Linear Algebra: faster tall, wide managed matrix multiplication. *~Aixile* +* Euclid: Integer Log2 (DeBruijn sequencences algorithm). +* Integration: Gauss-Legendre documentation, cleanup. *~Larz White* +* Random: Integer sub-range sampling to use rejection sampling to avoid bias. +* Random: Improvements on integer and byte sampling. +* BUG: Random: CryptoRandomSource must not generate 1.0 samples. +* BUG: Statistics: fixed bug in WeightedPearson Correlation. *~Jon Smit* + ### 3.12.0 - 2016-07-03 * ODE Solver: Runge-Kutta (order 2, 4) and Adams-Bashforth (order 1-4) algorithms *~Yoonku Hwang* * Linear Algebra: faster multiplication of sparse with dense matrices *~Arthur* diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 750a8725..2c66912d 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -44,9 +44,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index c5a27b3e..ba1b2362 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -10,9 +10,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/Numerics/Properties/AssemblyInfo.cs b/src/Numerics/Properties/AssemblyInfo.cs index 9c28c69e..ae25b8a6 100644 --- a/src/Numerics/Properties/AssemblyInfo.cs +++ b/src/Numerics/Properties/AssemblyInfo.cs @@ -45,9 +45,9 @@ using System.Runtime.InteropServices; [assembly: CLSCompliant(true)] [assembly: NeutralResourcesLanguage("en")] -[assembly: AssemblyVersion("3.12.0.0")] -[assembly: AssemblyFileVersion("3.12.0.0")] -[assembly: AssemblyInformationalVersion("3.12.0")] +[assembly: AssemblyVersion("3.13.0.0")] +[assembly: AssemblyFileVersion("3.13.0.0")] +[assembly: AssemblyInformationalVersion("3.13.0")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index a69b2ee6..c3d28c7b 100644 --- a/src/UnitTests/Properties/AssemblyInfo.cs +++ b/src/UnitTests/Properties/AssemblyInfo.cs @@ -9,8 +9,8 @@ using MathNet.Numerics.UnitTests; [assembly: ComVisible(false)] [assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")] -[assembly: AssemblyVersion("3.12.0.0")] -[assembly: AssemblyFileVersion("3.12.0.0")] -[assembly: AssemblyInformationalVersion("3.12.0")] +[assembly: AssemblyVersion("3.13.0.0")] +[assembly: AssemblyFileVersion("3.13.0.0")] +[assembly: AssemblyInformationalVersion("3.13.0")] [assembly: UseLinearAlgebraProvider]