Browse Source

Release: v3.0.0-beta05

pull/225/head v3.0.0-beta05
Christoph Ruegg 12 years ago
parent
commit
5ad81f3396
  1. 10
      RELEASENOTES.md
  2. 2
      src/FSharp/AssemblyInfo.fs
  3. 2
      src/FSharpUnitTests/AssemblyInfo.fs
  4. 2
      src/Numerics/Properties/AssemblyInfo.cs
  5. 2
      src/UnitTests/Properties/AssemblyInfo.cs

10
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:

2
src/FSharp/AssemblyInfo.fs

@ -47,7 +47,7 @@ open 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
#else

2
src/FSharpUnitTests/AssemblyInfo.fs

@ -11,7 +11,7 @@ open 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
#else

2
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

2
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]

Loading…
Cancel
Save