From 0bd57a587ecb8ace244e84ebcdd1f8a022cf1db4 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Tue, 5 Aug 2014 02:56:31 +0200 Subject: [PATCH] Release: v3.2.0 --- CONTRIBUTORS.md | 1 + RELEASENOTES.md | 10 ++++++++++ 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 663dc8d5..18260942 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -42,6 +42,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.* - Gregor959 - IUser - Iain Sproat +- Jeff Mastry - Kosei ABE - Martin Posch - Paul Varkey diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 34d275e6..33ae836b 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,13 @@ +### 3.2.0 - 2014-08-05 +* Linear Algebra: Vector.Map2 (map2 in F#), storage-optimized +* Linear Algebra: fix RemoveColumn/Row early index bound check (was not strict enough) +* Statistics: Entropy *~Jeff Mastry* +* Interpolation: use Array.BinarySearch instead of local implementation *~Candy Chiu* +* Resources: fix a corrupted exception message string +* Portable Build: support .Net 4.0 as well by using profile 328 instead of 344. +* .Net 3.5: F# extensions now support .Net 3.5 as well +* .Net 3.5: NuGet package now contains proper 3.5-only TPL package dependency; also in Zip package + ### 3.1.0 - 2014-07-20 * Random: generate a sequence of integers within a range in one go * Distributions: all distributions must have static routines to sample an array in one go diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index cde5a8dd..ce643048 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 261cdb6c..c8f8865c 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 e14d6e3d..cb882829 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.1.0.0")] -[assembly: AssemblyFileVersion("3.1.0.0")] -[assembly: AssemblyInformationalVersion("3.1.0")] +[assembly: AssemblyVersion("3.2.0.0")] +[assembly: AssemblyFileVersion("3.2.0.0")] +[assembly: AssemblyInformationalVersion("3.2.0")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index c7ca41d9..737e7e6a 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.1.0.0")] -[assembly: AssemblyFileVersion("3.1.0.0")] -[assembly: AssemblyInformationalVersion("3.1.0")] +[assembly: AssemblyVersion("3.2.0.0")] +[assembly: AssemblyFileVersion("3.2.0.0")] +[assembly: AssemblyInformationalVersion("3.2.0")] [assembly: UseLinearAlgebraProvider]