Browse Source

Release: v3.0.0-beta03

provider v3.0.0-beta03
Christoph Ruegg 12 years ago
parent
commit
725d7487d8
  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-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*

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-beta02")>]
[<assembly: AssemblyInformationalVersion("3.0.0-beta03")>]
#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-beta02")>]
[<assembly: AssemblyInformationalVersion("3.0.0-beta03")>]
#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-beta02")]
[assembly: AssemblyInformationalVersion("3.0.0-beta03")]
#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-beta02")]
[assembly: AssemblyInformationalVersion("3.0.0-beta03")]
[assembly: UseLinearAlgebraProvider]

Loading…
Cancel
Save