From bb3d75f4a3b790a16e8ff7deaed1b8461a0368c0 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sun, 3 Jul 2016 20:19:20 +0200 Subject: [PATCH] Release v3.12.0 --- RELEASENOTES.md | 8 +++++++- src/FSharp/AssemblyInfo.fs | 6 +++--- src/FSharpUnitTests/AssemblyInfo.fs | 6 +++--- src/Numerics/Properties/AssemblyInfo.cs | 6 +++--- src/UnitTests/Properties/AssemblyInfo.cs | 6 +++--- 5 files changed, 19 insertions(+), 13 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 240a27b3..40452a5f 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,9 @@ +### 3.12.0 - 2016-07-03 +* ODE Solver: Runge-Kutta (order 2, 4) and Adams-Bashforth (order 1-4) algorithms *~Yoonku Hwang* +* Linear Algebra: faster multiplication of sparse with dense matrices *~Arthur* +* BUG: Integration: Gauss-Legendre on order 256 *~Sergey Kosukhin* +* BUG: Distributions: ChiSquared sampling was taking a square root where it should not *~Florian Wechsung* + ### 3.11.1 - 2016-04-24 * BUG: Linear Algebra: sparse vector pointwise multiply/divide to itself * BUG: Linear Algebra: Vector.ToVectorString if the first column is wider than maxWidth @@ -15,7 +21,7 @@ * Statistics: Min/Max Absolute, MagnitudePhase (complex). * Statistics: FiveNumberSummary to use actual Median instead of R8 quantile. * Linear Algebra: matrix Rank to use relative epsilon. -* Linera Algebra: extensions to convert between single/double precision, complex/real. +* Linear Algebra: extensions to convert between single/double precision, complex/real. * Linear Algebra: Vector/Matrix storage DataContracts for ephemeral serialization. * Regression: more helpful exceptions and messages. * Random: 'Next' integer sampling no longer involves floating points, avoids one-off error in MersenneTwister. diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index f2f100fe..750a8725 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -44,9 +44,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index ae6b10d7..c5a27b3e 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -10,9 +10,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/Numerics/Properties/AssemblyInfo.cs b/src/Numerics/Properties/AssemblyInfo.cs index 58730780..9c28c69e 100644 --- a/src/Numerics/Properties/AssemblyInfo.cs +++ b/src/Numerics/Properties/AssemblyInfo.cs @@ -45,9 +45,9 @@ using System.Runtime.InteropServices; [assembly: CLSCompliant(true)] [assembly: NeutralResourcesLanguage("en")] -[assembly: AssemblyVersion("3.11.1.0")] -[assembly: AssemblyFileVersion("3.11.1.0")] -[assembly: AssemblyInformationalVersion("3.11.1")] +[assembly: AssemblyVersion("3.12.0.0")] +[assembly: AssemblyFileVersion("3.12.0.0")] +[assembly: AssemblyInformationalVersion("3.12.0")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index 68555bfa..a69b2ee6 100644 --- a/src/UnitTests/Properties/AssemblyInfo.cs +++ b/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.11.1.0")] -[assembly: AssemblyFileVersion("3.11.1.0")] -[assembly: AssemblyInformationalVersion("3.11.1")] +[assembly: AssemblyVersion("3.12.0.0")] +[assembly: AssemblyFileVersion("3.12.0.0")] +[assembly: AssemblyInformationalVersion("3.12.0")] [assembly: UseLinearAlgebraProvider]