Skip to content

Commit

Permalink
Release v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrnet committed Nov 26, 2014
1 parent 226e1e0 commit 5a4e706
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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*
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] }
Expand Down
2 changes: 1 addition & 1 deletion src/FSharp/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/FSharpUnitTests/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

[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

Expand Down
2 changes: 1 addition & 1 deletion src/UnitTests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

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

0 comments on commit 5a4e706

Please sign in to comment.