From e5135f1e1b9ce5db0518801c6f616baba2730930 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sun, 7 Jan 2018 18:03:14 +0100 Subject: [PATCH] Release v4.0.0-beta02 --- RELEASENOTES.md | 4 ++++ src/FSharp/AssemblyInfo.fs | 2 +- src/FSharp/FSharp.fsproj | 17 +++++------------ src/FSharpUnitTests/AssemblyInfo.fs | 2 +- src/Numerics/Numerics.csproj | 17 +++++------------ src/UnitTests/Properties/AssemblyInfo.cs | 2 +- 6 files changed, 17 insertions(+), 27 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c297f52b..c1037791 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,7 @@ +### 4.0.0-beta02 - 2018-01-07 +* Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula *~Aappo Pulkkinen* +* Statistics: Kernel Density Estimation *~Christoph Albert* + ### 4.0.0-beta01 - 2018-01-07 * BREAKING: drop obsolete functionality (which has been marked as obsolete for a while) * BREAKING: drop support for .Net 3.5 and PCL profiles diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 554d2402..d1454871 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -46,7 +46,7 @@ open System.Runtime.InteropServices [] [] -[] +[] #if PORTABLE || NETSTANDARD #else diff --git a/src/FSharp/FSharp.fsproj b/src/FSharp/FSharp.fsproj index 69c02765..08f4bc55 100644 --- a/src/FSharp/FSharp.fsproj +++ b/src/FSharp/FSharp.fsproj @@ -8,9 +8,9 @@ true MathNet.Numerics.FSharp 4.0.0 - beta01 - 4.0.0-beta01 - 4.0.0-beta01 + beta02 + 4.0.0-beta02 + 4.0.0-beta02 4.0.0.0 4.0.0.0 Math.NET Numerics for F# @@ -23,15 +23,8 @@ https://numerics.mathdotnet.com/License.html https://numerics.mathdotnet.com/ https://www.mathdotnet.com/images/MathNet128.png - BREAKING: drop obsolete functionality (which has been marked as obsolete for a while) -BREAKING: drop support for .Net 3.5 and PCL profiles -BREAKING: F#: drop support for .Net 4.0 and PCL profiles -BREAKING: F#: depends on FSharp.Core 4.2.3 -Explicit builds for .Net Framework 4.0 and higher and for .Net Standard 1.3 and 2.0 -F#: explicit builds for .Net Framework 4.5 and higher and for .Net Standard 1.6 and 2.0 -Assemblies are now code-signed with an X.509 certificate, using SHA2-256 hashes -BUG: Ode Solver: fix typo in the Runge-Kutta solvers on time-step handling ~Ksero -BUG: fix Matrix.GetHashCode for wide matrices ~mjmckp + Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula ~Aappo Pulkkinen +Statistics: Kernel Density Estimation ~Christoph Albert fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft false https://github.com/mathnet/mathnet-numerics diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index 33cdca8a..a3855424 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -12,7 +12,7 @@ open System.Runtime.InteropServices [] [] -[] +[] #if PORTABLE || NETSTANDARD #else diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index 21fd3343..457e52a3 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -8,9 +8,9 @@ true MathNet.Numerics 4.0.0 - beta01 - 4.0.0-beta01 - 4.0.0-beta01 + beta02 + 4.0.0-beta02 + 4.0.0-beta02 4.0.0.0 4.0.0.0 Math.NET Numerics @@ -23,15 +23,8 @@ https://numerics.mathdotnet.com/License.html https://numerics.mathdotnet.com/ https://www.mathdotnet.com/images/MathNet128.png - BREAKING: drop obsolete functionality (which has been marked as obsolete for a while) -BREAKING: drop support for .Net 3.5 and PCL profiles -BREAKING: F#: drop support for .Net 4.0 and PCL profiles -BREAKING: F#: depends on FSharp.Core 4.2.3 -Explicit builds for .Net Framework 4.0 and higher and for .Net Standard 1.3 and 2.0 -F#: explicit builds for .Net Framework 4.5 and higher and for .Net Standard 1.6 and 2.0 -Assemblies are now code-signed with an X.509 certificate, using SHA2-256 hashes -BUG: Ode Solver: fix typo in the Runge-Kutta solvers on time-step handling ~Ksero -BUG: fix Matrix.GetHashCode for wide matrices ~mjmckp + Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula ~Aappo Pulkkinen +Statistics: Kernel Density Estimation ~Christoph Albert math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft false https://github.com/mathnet/mathnet-numerics diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index 035f3abe..214fbeb2 100644 --- a/src/UnitTests/Properties/AssemblyInfo.cs +++ b/src/UnitTests/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ using MathNet.Numerics.UnitTests; [assembly: AssemblyVersion("4.0.0.0")] [assembly: AssemblyFileVersion("4.0.0.0")] -[assembly: AssemblyInformationalVersion("4.0.0-beta01")] +[assembly: AssemblyInformationalVersion("4.0.0-beta02")] [assembly: UseLinearAlgebraProvider]