Browse Source

Release: v3.0.1

pull/225/head v3.0.1
Christoph Ruegg 12 years ago
parent
commit
b6b5d5bdae
  1. 5
      RELEASENOTES.md
  2. 6
      src/FSharp/AssemblyInfo.fs
  3. 6
      src/FSharpUnitTests/AssemblyInfo.fs
  4. 6
      src/Numerics/Properties/AssemblyInfo.cs
  5. 6
      src/UnitTests/Properties/AssemblyInfo.cs

5
RELEASENOTES.md

@ -1,3 +1,6 @@
### 3.0.1 - 2014-06-22
* Patch release, fixing a bug in new Matrix.ToMatrixString and Vector.ToVectorString routines.
### 3.0.0 - 2014-06-21
* First stable v3 release:
* [Upgrade Notes](https://github.com/mathnet/mathnet-numerics/wiki/Upgrading-to-Version-3)
@ -22,7 +25,7 @@
* FoldRows renamed to FoldByRow, now operates on and returns arrays; same for columns. **Breaking.**
* New FoldRows and ReduceRows that operate on row vectors; same for columns
* Split Map into Map and MapConvert (allows optimization in common in-place case)
* Row and columns sums and absolute-sums
* Row and column sums and absolute-sums
* F# DiagonalMatrix module to create diagonal matrices without using the builder
* F# Matrix module extended with sumRows, sumAbsRows, normRows; same for columns
* Build: extend build and release automation, automatic releases also for data extensions and native providers

6
src/FSharp/AssemblyInfo.fs

@ -45,9 +45,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCulture("")>]
[<assembly: NeutralResourcesLanguage("en")>]
[<assembly: AssemblyVersion("3.0.0.0")>]
[<assembly: AssemblyFileVersion("3.0.0.0")>]
[<assembly: AssemblyInformationalVersion("3.0.0")>]
[<assembly: AssemblyVersion("3.0.1.0")>]
[<assembly: AssemblyFileVersion("3.0.1.0")>]
[<assembly: AssemblyInformationalVersion("3.0.1")>]
#if PORTABLE
#else

6
src/FSharpUnitTests/AssemblyInfo.fs

@ -9,9 +9,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCompany("Math.NET Project")>]
[<assembly: AssemblyProduct("Math.NET Numerics")>]
[<assembly: AssemblyVersion("3.0.0.0")>]
[<assembly: AssemblyFileVersion("3.0.0.0")>]
[<assembly: AssemblyInformationalVersion("3.0.0")>]
[<assembly: AssemblyVersion("3.0.1.0")>]
[<assembly: AssemblyFileVersion("3.0.1.0")>]
[<assembly: AssemblyInformationalVersion("3.0.1")>]
#if PORTABLE
#else

6
src/Numerics/Properties/AssemblyInfo.cs

@ -45,9 +45,9 @@ using System.Runtime.InteropServices;
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0")]
[assembly: AssemblyVersion("3.0.1.0")]
[assembly: AssemblyFileVersion("3.0.1.0")]
[assembly: AssemblyInformationalVersion("3.0.1")]
#if PORTABLE

6
src/UnitTests/Properties/AssemblyInfo.cs

@ -8,8 +8,8 @@ using MathNet.Numerics.UnitTests;
[assembly: ComVisible(false)]
[assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0")]
[assembly: AssemblyVersion("3.0.1.0")]
[assembly: AssemblyFileVersion("3.0.1.0")]
[assembly: AssemblyInformationalVersion("3.0.1")]
[assembly: UseLinearAlgebraProvider]

Loading…
Cancel
Save