Browse Source

Release: v3.2.0

pull/248/head v3.2.0
Christoph Ruegg 12 years ago
parent
commit
0bd57a587e
  1. 1
      CONTRIBUTORS.md
  2. 10
      RELEASENOTES.md
  3. 6
      src/FSharp/AssemblyInfo.fs
  4. 6
      src/FSharpUnitTests/AssemblyInfo.fs
  5. 6
      src/Numerics/Properties/AssemblyInfo.cs
  6. 6
      src/UnitTests/Properties/AssemblyInfo.cs

1
CONTRIBUTORS.md

@ -42,6 +42,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Gregor959
- IUser
- Iain Sproat
- Jeff Mastry
- Kosei ABE
- Martin Posch
- Paul Varkey

10
RELEASENOTES.md

@ -1,3 +1,13 @@
### 3.2.0 - 2014-08-05
* Linear Algebra: Vector.Map2 (map2 in F#), storage-optimized
* Linear Algebra: fix RemoveColumn/Row early index bound check (was not strict enough)
* Statistics: Entropy *~Jeff Mastry*
* Interpolation: use Array.BinarySearch instead of local implementation *~Candy Chiu*
* Resources: fix a corrupted exception message string
* Portable Build: support .Net 4.0 as well by using profile 328 instead of 344.
* .Net 3.5: F# extensions now support .Net 3.5 as well
* .Net 3.5: NuGet package now contains proper 3.5-only TPL package dependency; also in Zip package
### 3.1.0 - 2014-07-20
* Random: generate a sequence of integers within a range in one go
* Distributions: all distributions must have static routines to sample an array in one go

6
src/FSharp/AssemblyInfo.fs

@ -45,9 +45,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCulture("")>]
[<assembly: NeutralResourcesLanguage("en")>]
[<assembly: AssemblyVersion("3.1.0.0")>]
[<assembly: AssemblyFileVersion("3.1.0.0")>]
[<assembly: AssemblyInformationalVersion("3.1.0")>]
[<assembly: AssemblyVersion("3.2.0.0")>]
[<assembly: AssemblyFileVersion("3.2.0.0")>]
[<assembly: AssemblyInformationalVersion("3.2.0")>]
#if PORTABLE
#else

6
src/FSharpUnitTests/AssemblyInfo.fs

@ -10,9 +10,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyProduct("Math.NET Numerics")>]
[<assembly: AssemblyCopyright("Copyright (c) Math.NET Project")>]
[<assembly: AssemblyVersion("3.1.0.0")>]
[<assembly: AssemblyFileVersion("3.1.0.0")>]
[<assembly: AssemblyInformationalVersion("3.1.0")>]
[<assembly: AssemblyVersion("3.2.0.0")>]
[<assembly: AssemblyFileVersion("3.2.0.0")>]
[<assembly: AssemblyInformationalVersion("3.2.0")>]
#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.1.0.0")]
[assembly: AssemblyFileVersion("3.1.0.0")]
[assembly: AssemblyInformationalVersion("3.1.0")]
[assembly: AssemblyVersion("3.2.0.0")]
[assembly: AssemblyFileVersion("3.2.0.0")]
[assembly: AssemblyInformationalVersion("3.2.0")]
#if PORTABLE

6
src/UnitTests/Properties/AssemblyInfo.cs

@ -9,8 +9,8 @@ using MathNet.Numerics.UnitTests;
[assembly: ComVisible(false)]
[assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")]
[assembly: AssemblyVersion("3.1.0.0")]
[assembly: AssemblyFileVersion("3.1.0.0")]
[assembly: AssemblyInformationalVersion("3.1.0")]
[assembly: AssemblyVersion("3.2.0.0")]
[assembly: AssemblyFileVersion("3.2.0.0")]
[assembly: AssemblyInformationalVersion("3.2.0")]
[assembly: UseLinearAlgebraProvider]

Loading…
Cancel
Save