From 725d7487d8eff94127862e126dd28ad5fc671e2f Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Thu, 5 Jun 2014 20:19:45 +0200 Subject: [PATCH] Release: v3.0.0-beta03 --- RELEASENOTES.md | 10 ++++++++++ src/FSharp/AssemblyInfo.fs | 2 +- src/FSharpUnitTests/AssemblyInfo.fs | 2 +- src/Numerics/Properties/AssemblyInfo.cs | 2 +- src/UnitTests/Properties/AssemblyInfo.cs | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 80de9f20..77e30992 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,13 @@ +### 3.0.0-beta03 - 2014-06-05 +* Linear Algebra: vector outer product now follows common style, supports explicit result argument, more efficient. +* Interpolation: must not modify/sort original data; alternative Sorted and Inplace functions. +* Distributions: static IsValidParameterSet functions. +* Distributions: all distributions are now immutable in their distribution parameters. +* NuGet: attempt to create proper symbol+source packages on symbolsource; primary packages smaller, w/o pdbs +* Build: skip long tests with new "quick" argument (FAKE) +* Build: clearing is more explicit, fixes most locking issues if solution is also open in IDE. +* Build: automated publishing docs, api, git release tag (maintainer) + ### 3.0.0-beta02 - 2014-05-29 * Linear Algebra: * optimized sparse-sparse and sparse-diagonal matrix products. *~Christian Woltering* diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index be0656af..dbbc3363 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -47,7 +47,7 @@ open System.Runtime.InteropServices [] [] -[] +[] #if PORTABLE #else diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index 748b09b3..52950362 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -11,7 +11,7 @@ open System.Runtime.InteropServices [] [] -[] +[] #if PORTABLE #else diff --git a/src/Numerics/Properties/AssemblyInfo.cs b/src/Numerics/Properties/AssemblyInfo.cs index 39adddc5..fb39c72a 100644 --- a/src/Numerics/Properties/AssemblyInfo.cs +++ b/src/Numerics/Properties/AssemblyInfo.cs @@ -47,7 +47,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyVersion("3.0.0.0")] [assembly: AssemblyFileVersion("3.0.0.0")] -[assembly: AssemblyInformationalVersion("3.0.0-beta02")] +[assembly: AssemblyInformationalVersion("3.0.0-beta03")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index a53f334b..4348d61b 100644 --- a/src/UnitTests/Properties/AssemblyInfo.cs +++ b/src/UnitTests/Properties/AssemblyInfo.cs @@ -10,6 +10,6 @@ using MathNet.Numerics.UnitTests; [assembly: AssemblyVersion("3.0.0.0")] [assembly: AssemblyFileVersion("3.0.0.0")] -[assembly: AssemblyInformationalVersion("3.0.0-beta02")] +[assembly: AssemblyInformationalVersion("3.0.0-beta03")] [assembly: UseLinearAlgebraProvider]