diff --git a/RELEASENOTES.md b/RELEASENOTES.md index a693e864..91e68cc9 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,8 @@ +### 4.15.0 - 2021-01-07 +* Precision: Round (with integer part rounding) *~Jon Larborn* +* Precision: RoundToMultiple, RoundToPower +* F#: BigRational.FromDecimal *~Brian Berns* + ### 4.14.0 - 2021-01-01 * Optimization: Avoid losing precision in golden section minimizer *~Daniel Fox* * Interpolation: Monotone-preserving Piecewise Cubic Hermite Polynomial (PCHIP) *~Febin* diff --git a/src/FSharp.Tests/AssemblyInfo.fs b/src/FSharp.Tests/AssemblyInfo.fs index 8c5f51ea..a9508788 100644 --- a/src/FSharp.Tests/AssemblyInfo.fs +++ b/src/FSharp.Tests/AssemblyInfo.fs @@ -10,9 +10,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] [] [] diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 8b38a035..72d5aaef 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -44,9 +44,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] [] [] diff --git a/src/FSharp/FSharp.fsproj b/src/FSharp/FSharp.fsproj index 0b65b749..84ce4d5f 100644 --- a/src/FSharp/FSharp.fsproj +++ b/src/FSharp/FSharp.fsproj @@ -7,14 +7,13 @@ MathNet.Numerics true MathNet.Numerics.FSharp$(PackageIdSuffix) - 4.14.0 + 4.15.0 Math.NET Numerics for F#$(TitleSuffix) F# Modules for Math.NET Numerics, the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .Net Framework 4.5 or higher and .Net Standard 1.6 or higher, on Windows, Linux and Mac.$(DescriptionSuffix) - Optimization: Avoid losing precision in golden section minimizer ~Daniel Fox -Interpolation: Monotone-preserving Piecewise Cubic Hermite Polynomial (PCHIP) ~Febin -Linear Algebra: Sparse COO format fix handling if not sorted or with duplicates ~Jong Hyun Kim -Linear Algebra: Matrix.Resize + Precision: Round (with integer part rounding) ~Jon Larborn +Precision: RoundToMultiple, RoundToPower +F#: BigRational.FromDecimal ~Brian Berns fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft false false diff --git a/src/Numerics.Tests/Properties/AssemblyInfo.cs b/src/Numerics.Tests/Properties/AssemblyInfo.cs index 18b6d2b9..0d3f6059 100644 --- a/src/Numerics.Tests/Properties/AssemblyInfo.cs +++ b/src/Numerics.Tests/Properties/AssemblyInfo.cs @@ -9,8 +9,8 @@ using MathNet.Numerics.UnitTests; [assembly: ComVisible(false)] [assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")] -[assembly: AssemblyVersion("4.14.0.0")] -[assembly: AssemblyFileVersion("4.14.0.0")] -[assembly: AssemblyInformationalVersion("4.14.0")] +[assembly: AssemblyVersion("4.15.0.0")] +[assembly: AssemblyFileVersion("4.15.0.0")] +[assembly: AssemblyInformationalVersion("4.15.0")] [assembly: UseLinearAlgebraProvider] diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index 74960b33..07d9319e 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -7,14 +7,13 @@ MathNet.Numerics true MathNet.Numerics$(PackageIdSuffix) - 4.14.0 + 4.15.0 Math.NET Numerics$(TitleSuffix) Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .Net Framework 4.0 or higher and .Net Standard 1.3 or higher, on Windows, Linux and Mac.$(DescriptionSuffix) - Optimization: Avoid losing precision in golden section minimizer ~Daniel Fox -Interpolation: Monotone-preserving Piecewise Cubic Hermite Polynomial (PCHIP) ~Febin -Linear Algebra: Sparse COO format fix handling if not sorted or with duplicates ~Jong Hyun Kim -Linear Algebra: Matrix.Resize + Precision: Round (with integer part rounding) ~Jon Larborn +Precision: RoundToMultiple, RoundToPower +F#: BigRational.FromDecimal ~Brian Berns math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft true false diff --git a/src/TestData/Properties/AssemblyInfo.cs b/src/TestData/Properties/AssemblyInfo.cs index 2eb7a29f..072660cb 100644 --- a/src/TestData/Properties/AssemblyInfo.cs +++ b/src/TestData/Properties/AssemblyInfo.cs @@ -14,5 +14,5 @@ using System.Runtime.InteropServices; [assembly: Guid("a4a6a08e-5265-4608-a43d-e4f2e210ba2d")] -[assembly: AssemblyVersion("4.14.0.0")] -[assembly: AssemblyFileVersion("4.14.0.0")] +[assembly: AssemblyVersion("4.15.0.0")] +[assembly: AssemblyFileVersion("4.15.0.0")]