diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c1037791..0a570286 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,7 @@ +### 4.0.0-beta03 - 2018-01-09 +* Optimization: Limited-Memory BFGS *~Florian Wechsung* +* BUG: Trigonometry: Fix imaginary part sign of complex hyperbolic cotangent + ### 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* diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index d1454871..d76f237f 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 08f4bc55..450679dc 100644 --- a/src/FSharp/FSharp.fsproj +++ b/src/FSharp/FSharp.fsproj @@ -8,9 +8,9 @@ true MathNet.Numerics.FSharp 4.0.0 - beta02 - 4.0.0-beta02 - 4.0.0-beta02 + beta03 + 4.0.0-beta03 + 4.0.0-beta03 4.0.0.0 4.0.0.0 Math.NET Numerics for F# @@ -23,8 +23,8 @@ https://numerics.mathdotnet.com/License.html https://numerics.mathdotnet.com/ https://www.mathdotnet.com/images/MathNet128.png - Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula ~Aappo Pulkkinen -Statistics: Kernel Density Estimation ~Christoph Albert + Optimization: Limited-Memory BFGS ~Florian Wechsung +BUG: Trigonometry: Fix imaginary part sign of complex hyperbolic cotangent 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 a3855424..0ca6253a 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 457e52a3..87f159db 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -8,9 +8,9 @@ true MathNet.Numerics 4.0.0 - beta02 - 4.0.0-beta02 - 4.0.0-beta02 + beta03 + 4.0.0-beta03 + 4.0.0-beta03 4.0.0.0 4.0.0.0 Math.NET Numerics @@ -23,8 +23,8 @@ https://numerics.mathdotnet.com/License.html https://numerics.mathdotnet.com/ https://www.mathdotnet.com/images/MathNet128.png - Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula ~Aappo Pulkkinen -Statistics: Kernel Density Estimation ~Christoph Albert + Optimization: Limited-Memory BFGS ~Florian Wechsung +BUG: Trigonometry: Fix imaginary part sign of complex hyperbolic cotangent 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 214fbeb2..637fe14b 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-beta02")] +[assembly: AssemblyInformationalVersion("4.0.0-beta03")] [assembly: UseLinearAlgebraProvider]