diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 7f165c05..8c24ad4b 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,13 @@ +### 3.0.0-beta05 - 2014-06-20 +* 2nd Candidate for v3.0 Release +* Distance: fix bug in Hamming distance that skipped the first pair. +* F#: packages now include a MathNet.Numerics.fsx script that includes FSI printers and references the assemblies. +* Linear Algebra: improved matrix and vector ToString formatting, more compact, adaptive to actual numbers. +* Linear Algebra: CoerceZero for matrix and vector to replace small numbers with zero. +* Regression: DirectRegressionMethod option to specify as argument which direct method should be used. +* Control: drop MaxToStringRows/Columns properties (no longer used) +* Random: clarify bad randomness properties of SystemRandomSource.FastDoubles (trade off) + ### 3.0.0-beta04 - 2014-06-16 * Candidate for v3.0 Release * Linear Algebra: diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index c3520f99..2fb005af 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 de5a5e76..ac26fb69 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 2f2de585..d7e5b4a7 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-beta04")] +[assembly: AssemblyInformationalVersion("3.0.0-beta05")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index dcac9422..7cb8cfbd 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-beta04")] +[assembly: AssemblyInformationalVersion("3.0.0-beta05")] [assembly: UseLinearAlgebraProvider]