From f8d6e5d937997d2d7793f724f0b8d85fb659c2ab Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Wed, 25 Nov 2015 23:43:52 +0100 Subject: [PATCH] Release v3.9.0 --- CONTRIBUTORS.md | 3 +++ RELEASENOTES.md | 8 ++++++++ src/FSharp/AssemblyInfo.fs | 6 +++--- src/FSharpUnitTests/AssemblyInfo.fs | 6 +++--- src/Numerics/Properties/AssemblyInfo.cs | 6 +++--- src/UnitTests/Properties/AssemblyInfo.cs | 6 +++--- 6 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f61f9b5f..90bdbbed 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -35,6 +35,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Phil Cleveland - Scott Stephens - Superbest +- lionpeloux - Anders Gustafsson - Gauthier Segay - Hythem Sidky @@ -49,6 +50,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Jon Larborn - Kyle Parrigan - borfudin +- BenHewins - Gregor959 - IUser - Iain Sproat @@ -63,6 +65,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Tomas Petricek - ViK - VicPara +- Volker Breuer - Baltazar Bieniek - bstrausser - grovesNL diff --git a/RELEASENOTES.md b/RELEASENOTES.md index fc53b3cb..a351aede 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,11 @@ +### 3.9.0 - 2015-11-25 +* Distributions: Normal.CDF avoids problematic subtraction by using Erfc instead of Erf. +* Statistics: geometric and harmonic mean. +* Statistics: DataContracts for ephemeral serialization on RunningStatistics, DescriptiveStatistics and Histogram. +* BUG: Statistics: Histogram did not adjust lower bound correctly when value was equal to the bound *~Volker Breuer* +* Linear Algebra: minor optimization on how we call Array.Copy. +* BUG: Linear Algebra: fix bug in Complex and Complex32 SparseMatrix.ToTypeString. + ### 3.8.0 - 2015-09-26 * Distributions: PDF and CDF more robust for large distribution parameters. * Distributions: BetaScaled distribution. diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index c6237636..19625231 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -45,9 +45,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index db74e7cb..71dcaac5 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 26638ba1..939136a3 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.8.0.0")] -[assembly: AssemblyFileVersion("3.8.0.0")] -[assembly: AssemblyInformationalVersion("3.8.0")] +[assembly: AssemblyVersion("3.9.0.0")] +[assembly: AssemblyFileVersion("3.9.0.0")] +[assembly: AssemblyInformationalVersion("3.9.0")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index caaaa181..41d1c9bd 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.8.0.0")] -[assembly: AssemblyFileVersion("3.8.0.0")] -[assembly: AssemblyInformationalVersion("3.8.0")] +[assembly: AssemblyVersion("3.9.0.0")] +[assembly: AssemblyFileVersion("3.9.0.0")] +[assembly: AssemblyInformationalVersion("3.9.0")] [assembly: UseLinearAlgebraProvider]