diff --git a/RELEASENOTES.md b/RELEASENOTES.md index cda997d2..ef98c352 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,4 +1,4 @@ -### 5.0.0-alpha02 - 2021-07-11 +### 5.0.0-alpha03 - 2021-12-05 * COMPATIBILITY: net5.0, net48 better supported with explicit builds * COMPATIBILITY: netstandard1.x, net40, net45 no longer supported * BREAKING: drop all which was marked as obsolete @@ -10,6 +10,8 @@ * Optimizations: Remove static properties in LevenbergMarquardtMinimizer *~Jong Hyun Kim* * Root Finding: Newton-Raphson better handling of zero-evaluations * Fit.Curve and FindMinimum extended to accept two more parameters +* Fixed an index out of bounds issue when calculating BFGS minimizer with one variable *~Shiney* +* Marcum-Q function *~CHUTORO* * Series: stable series summation * Providers: drop managed reference linear algebra provider * Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/docs/Build.md b/docs/Build.md index 18422cdb..0d6f7ee7 100644 --- a/docs/Build.md +++ b/docs/Build.md @@ -170,7 +170,7 @@ Official Release Process (Maintainers only) * Build Release: - build.sh all strongname + build.sh all --strongname * Commit and push release notes and (auto-updated) assembly info files with new "Release: v1.2.3" commit diff --git a/src/Data.Matlab/Data.Matlab.csproj b/src/Data.Matlab/Data.Matlab.csproj index ce54df55..c3c84885 100644 --- a/src/Data.Matlab/Data.Matlab.csproj +++ b/src/Data.Matlab/Data.Matlab.csproj @@ -9,7 +9,7 @@ MathNet.Numerics.Data.Matlab MathNet.Numerics.Data.Matlab.Signed 5.0.0 - alpha02 + alpha03 Math.NET Numerics - MATLAB Data I/O Extensions$(TitleSuffix) MathWorks MATLAB Data Input/Output Extensions 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.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/src/Data.Text/Data.Text.csproj b/src/Data.Text/Data.Text.csproj index 895e5cd7..1e114c9f 100644 --- a/src/Data.Text/Data.Text.csproj +++ b/src/Data.Text/Data.Text.csproj @@ -9,7 +9,7 @@ MathNet.Numerics.Data.Text MathNet.Numerics.Data.Text.Signed 5.0.0 - alpha02 + alpha03 Math.NET Numerics - Text Data I/O Extensions$(TitleSuffix) Text Data Input/Output Extensions 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.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/src/FSharp/FSharp.fsproj b/src/FSharp/FSharp.fsproj index 5b83867f..fc8f62a0 100644 --- a/src/FSharp/FSharp.fsproj +++ b/src/FSharp/FSharp.fsproj @@ -9,7 +9,7 @@ MathNet.Numerics.FSharp MathNet.Numerics.FSharp.Signed 5.0.0 - alpha02 + alpha03 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 5.0 or higher, .NET Standard 2.0 and .NET Framework 4.6.1 or higher, on Windows, Linux and Mac.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index 71aebcef..ff167cf6 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -9,7 +9,7 @@ MathNet.Numerics MathNet.Numerics.Signed 5.0.0 - alpha02 + alpha03 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 5.0 or higher, .NET Standard 2.0 and .NET Framework 4.6.1 or higher, on Windows, Linux and Mac.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/src/Providers.CUDA/Providers.CUDA.csproj b/src/Providers.CUDA/Providers.CUDA.csproj index 860e8eff..f6385245 100644 --- a/src/Providers.CUDA/Providers.CUDA.csproj +++ b/src/Providers.CUDA/Providers.CUDA.csproj @@ -9,7 +9,7 @@ MathNet.Numerics.Providers.CUDA MathNet.Numerics.Providers.CUDA.Signed 5.0.0 - alpha02 + alpha03 Math.NET Numerics CUDA Provider$(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.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/src/Providers.MKL/Providers.MKL.csproj b/src/Providers.MKL/Providers.MKL.csproj index c7539c86..b5658f13 100644 --- a/src/Providers.MKL/Providers.MKL.csproj +++ b/src/Providers.MKL/Providers.MKL.csproj @@ -9,7 +9,7 @@ MathNet.Numerics.Providers.MKL MathNet.Numerics.Providers.MKL.Signed 5.0.0 - alpha02 + alpha03 Math.NET Numerics MKL Provider$(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.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed diff --git a/src/Providers.OpenBLAS/Providers.OpenBLAS.csproj b/src/Providers.OpenBLAS/Providers.OpenBLAS.csproj index 6a453ec0..b6e77380 100644 --- a/src/Providers.OpenBLAS/Providers.OpenBLAS.csproj +++ b/src/Providers.OpenBLAS/Providers.OpenBLAS.csproj @@ -9,7 +9,7 @@ MathNet.Numerics.Providers.OpenBLAS MathNet.Numerics.Providers.OpenBLAS.Signed 5.0.0 - alpha02 + alpha03 Math.NET Numerics OpenBLAS Provider$(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.$(DescriptionSuffix) COMPATIBILITY: net5.0, net48 better supported with explicit builds @@ -23,6 +23,8 @@ Precision: Perf: pre-compute negative powers ~Febin Optimizations: Remove static properties in LevenbergMarquardtMinimizer ~Jong Hyun Kim Root Finding: Newton-Raphson better handling of zero-evaluations Fit.Curve and FindMinimum extended to accept two more parameters +Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney +Marcum-Q function ~CHUTORO Series: stable series summation Providers: drop managed reference linear algebra provider Providers: native providers no longer inherit managed providers, managed now sealed