Skip to content

Commit

Permalink
Release v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrnet committed Mar 22, 2015
1 parent a6878cc commit 9771f1b
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- David Prince
- Andriy Bratiychuk
- Jack Pappas
- Kuan Bartel
- Artyom Baranovskiy
- Ashley Messer
- Candy Chiu
Expand All @@ -36,7 +37,6 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Anders Gustafsson
- Gauthier Segay
- Hythem Sidky
- Kuan Bartel
- Patrick van der Velde
- Robin Neatherway
- Andrew Kazyrevich
Expand All @@ -56,6 +56,7 @@ Feel free to add a link to your personal site/blog and/or twitter handle.*
- Tomas Petricek
- ViK
- VicPara
- Baltazar Bieniek
- bstrausser
- mjmckp
- nyuriks
Expand Down
15 changes: 15 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### 3.6.0 - 2015-03-22
* Distributions: ChiSquare.CDF more robust for large numbers *~Baltazar Bieniek*
* Linear Algebra: MatrixStorage.Map2 equivalent to VectorStorage.Map2
* Linear Algebra: Matrix and Vector Find/Find2, Exists/Exists2, ForAll/ForAll2
* Linear Algebra: more consistent range checking in MatrixStorage.Clear and related
* Linear Algebra: mixed-storage fall back implementations now leverage higher-order functions
* BUG: Linear Algebra: fix loop range in MatrixStorage.ClearColumns (built-in storage not affected)
* BUG: Linear Algebra: fix sparse matrix equality.
* BUG: Linear Algebra: ArgumentException instead of index exception when trying to create an empty matrix.
* Generate: Unfold, Fibonacci; Normal and Standard replacing Gaussian and Stable.
* Native Providers: NativeProviderLoader to automatically load the provider for the matching processor architecture (x86, x64) *~Kuan Bartel*
* Native Providers: Control.NativeProviderPath allowing to explicitly declare where to load binaries from.
* MKL Native Provider: support for native complex eigen-value decomposition *~Marcus Cuda*
* MKL Native Provider: non-convergence checks in singular-value and eigen-value decompositions *~Marcus Cuda*

### 3.5.0 - 2015-01-10
* Differentiation: derivative, partial and mixed partial; hessian & jacobian *~Hythem Sidky*
* Differentiation: Differentiate facade class for simple use cases
Expand Down
6 changes: 3 additions & 3 deletions src/FSharp/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCulture("")>]
[<assembly: NeutralResourcesLanguage("en")>]

[<assembly: AssemblyVersion("3.5.0.0")>]
[<assembly: AssemblyFileVersion("3.5.0.0")>]
[<assembly: AssemblyInformationalVersion("3.5.0")>]
[<assembly: AssemblyVersion("3.6.0.0")>]
[<assembly: AssemblyFileVersion("3.6.0.0")>]
[<assembly: AssemblyInformationalVersion("3.6.0")>]

#if PORTABLE
#else
Expand Down
6 changes: 3 additions & 3 deletions src/FSharpUnitTests/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyProduct("Math.NET Numerics")>]
[<assembly: AssemblyCopyright("Copyright (c) Math.NET Project")>]

[<assembly: AssemblyVersion("3.5.0.0")>]
[<assembly: AssemblyFileVersion("3.5.0.0")>]
[<assembly: AssemblyInformationalVersion("3.5.0")>]
[<assembly: AssemblyVersion("3.6.0.0")>]
[<assembly: AssemblyFileVersion("3.6.0.0")>]
[<assembly: AssemblyInformationalVersion("3.6.0")>]

#if PORTABLE
#else
Expand Down
6 changes: 3 additions & 3 deletions src/Numerics/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en")]

[assembly: AssemblyVersion("3.5.0.0")]
[assembly: AssemblyFileVersion("3.5.0.0")]
[assembly: AssemblyInformationalVersion("3.5.0")]
[assembly: AssemblyVersion("3.6.0.0")]
[assembly: AssemblyFileVersion("3.6.0.0")]
[assembly: AssemblyInformationalVersion("3.6.0")]

#if PORTABLE

Expand Down
6 changes: 3 additions & 3 deletions src/UnitTests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
[assembly: ComVisible(false)]
[assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")]

[assembly: AssemblyVersion("3.5.0.0")]
[assembly: AssemblyFileVersion("3.5.0.0")]
[assembly: AssemblyInformationalVersion("3.5.0")]
[assembly: AssemblyVersion("3.6.0.0")]
[assembly: AssemblyFileVersion("3.6.0.0")]
[assembly: AssemblyInformationalVersion("3.6.0")]

[assembly: UseLinearAlgebraProvider]

0 comments on commit 9771f1b

Please sign in to comment.