Browse Source

Release v3.3.0

cuda v3.3.0
Christoph Ruegg 12 years ago
parent
commit
5a4e706096
  1. 1
      CONTRIBUTORS.md
  2. 9
      RELEASENOTES.md
  3. 2
      build.fsx
  4. 2
      src/FSharp/AssemblyInfo.fs
  5. 2
      src/FSharpUnitTests/AssemblyInfo.fs
  6. 2
      src/Numerics/Properties/AssemblyInfo.cs
  7. 2
      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.*
- Iain McDonald
- Kyle Parrigan
- Gregor959
- Hythem Sidky
- IUser
- Iain Sproat
- Jeff Mastry

9
RELEASENOTES.md

@ -1,11 +1,10 @@
### 3.3.0-beta2 - 2014-10-25
* Build: for core add PCL profiles 7, 78 and 259; for F# extensions drop PCL profile 328
### 3.3.0-beta1 - 2014-09-28
### 3.3.0 - 2014-11-26
* Linear Algebra: Vector.Fold2 (fold2 in F#), storage optimized
* Linear Algebra: Minor change how matrix products call the LA provider
* Linear Algebra: Random generation now leveraging array sampling routines
* Linear Algebra: fix bug when manually assigning System.Random to random distribution
* Root Finding: Change Brent tolerance check, add bracked check *~Hythen Sidky*
* Root Finding: Auto zero-crossing bracketing in FindRoots facade (not in algorithms)
* Statistics: RootMeanSquare (RMS)
* Distributions: Array sampling routines now available through interface
* Distributions: Categorical sampling now explicitly skips p=0 categories
@ -14,8 +13,10 @@
* Distance: Jaccard Index
* F#: explicitly depend on official FSharp.Core NuGet packages
* F#: NuGet package with iPython IfSharp F# module integration load script
* F#: load scripts with better packet support (and NuGet with -ExcludeVersion)
* Build: unified build.sh and buildn.sh into combined build.sh
* Build: use Paket instead of NuGet to maintain NuGet dependencies
* Build: for core add PCL profiles 7, 78 and 259; for F# extensions drop PCL profile 328
### 3.2.3 - 2014-09-06
* Bug fix: MatrixNormal distribution: density for non-square matrices *~Evelina Gabasova*

2
build.fsx

@ -130,7 +130,7 @@ let fsharpPack =
Tags = "fsharp F# " + tags
Dependencies =
[ { FrameworkVersion="net35"
Dependencies=[ ] }
Dependencies=[ "MathNet.Numerics", RequireExactly packageVersion ] }
{ FrameworkVersion="net40"
Dependencies=[ "MathNet.Numerics", RequireExactly packageVersion
"FSharp.Core.Microsoft.Signed", GetPackageVersion "packages" "FSharp.Core.Microsoft.Signed" ] }

2
src/FSharp/AssemblyInfo.fs

@ -47,7 +47,7 @@ open System.Runtime.InteropServices
[<assembly: AssemblyVersion("3.3.0.0")>]
[<assembly: AssemblyFileVersion("3.3.0.0")>]
[<assembly: AssemblyInformationalVersion("3.3.0-beta2")>]
[<assembly: AssemblyInformationalVersion("3.3.0")>]
#if PORTABLE
#else

2
src/FSharpUnitTests/AssemblyInfo.fs

@ -12,7 +12,7 @@ open System.Runtime.InteropServices
[<assembly: AssemblyVersion("3.3.0.0")>]
[<assembly: AssemblyFileVersion("3.3.0.0")>]
[<assembly: AssemblyInformationalVersion("3.3.0-beta2")>]
[<assembly: AssemblyInformationalVersion("3.3.0")>]
#if PORTABLE
#else

2
src/Numerics/Properties/AssemblyInfo.cs

@ -47,7 +47,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyVersion("3.3.0.0")]
[assembly: AssemblyFileVersion("3.3.0.0")]
[assembly: AssemblyInformationalVersion("3.3.0-beta2")]
[assembly: AssemblyInformationalVersion("3.3.0")]
#if PORTABLE

2
src/UnitTests/Properties/AssemblyInfo.cs

@ -11,6 +11,6 @@ using MathNet.Numerics.UnitTests;
[assembly: AssemblyVersion("3.3.0.0")]
[assembly: AssemblyFileVersion("3.3.0.0")]
[assembly: AssemblyInformationalVersion("3.3.0-beta2")]
[assembly: AssemblyInformationalVersion("3.3.0")]
[assembly: UseLinearAlgebraProvider]

Loading…
Cancel
Save