Skip to content

Commit 977b289

Browse files
committed
Release v5.0.0-alpha08
1 parent 0cf753c commit 977b289

8 files changed

Lines changed: 18 additions & 10 deletions

File tree

RELEASENOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 5.0.0-alpha07 - 2021-12-19
1+
### 5.0.0-alpha08 - 2021-12-23
22
* COMPATIBILITY: net5.0, net48 better supported with explicit builds
33
* COMPATIBILITY: netstandard1.x, net40, net45 no longer supported
44
* BREAKING: drop all which was marked as obsolete
@@ -13,6 +13,7 @@
1313
* Fixed an index out of bounds issue when calculating BFGS minimizer with one variable *~Shiney*
1414
* Marcum-Q function *~CHUTORO*
1515
* Series: stable series summation
16+
* Providers: binary names and loading changes to follow conventions and better x-plat
1617
* Providers: drop managed reference linear algebra provider
1718
* Providers: native providers no longer inherit managed providers, managed now sealed
1819
* Providers: MKL provider compilation switched to Intel oneAPI MKL

src/Data.Matlab/Data.Matlab.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics.Data.Matlab</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Data.Matlab.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics - MATLAB Data I/O Extensions$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL

src/Data.Text/Data.Text.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics.Data.Text</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Data.Text.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics - Text Data I/O Extensions$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL

src/FSharp/FSharp.fsproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics.FSharp</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.FSharp.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics for F#$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL
@@ -68,6 +69,6 @@ Control.Describe now includes CPU architecture and family identifier if know</Pa
6869
<PrivateAssets>all</PrivateAssets>
6970
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
7071
</PackageReference>
71-
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
72+
<PackageReference Include="System.ValueTuple" Version="4.4.0" Condition="'$(TargetFramework)' == 'net461'" />
7273
</ItemGroup>
7374
</Project>

src/Numerics/Numerics.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL
@@ -42,7 +43,7 @@ Control.Describe now includes CPU architecture and family identifier if know</Pa
4243
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
4344
</PropertyGroup>
4445
<ItemGroup>
45-
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
46+
<PackageReference Include="System.ValueTuple" Version="4.4.0" Condition="'$(TargetFramework)' == 'net461'" />
4647
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2">
4748
<PrivateAssets>all</PrivateAssets>
4849
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/Providers.CUDA/Providers.CUDA.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics.Providers.CUDA</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Providers.CUDA.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics CUDA Provider$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL

src/Providers.MKL/Providers.MKL.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics.Providers.MKL</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Providers.MKL.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics MKL Provider$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL

src/Providers.OpenBLAS/Providers.OpenBLAS.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>MathNet.Numerics.Providers.OpenBLAS</PackageId>
1010
<PackageId Condition="'$(StrongName)'=='True'">MathNet.Numerics.Providers.OpenBLAS.Signed</PackageId>
1111
<VersionPrefix>5.0.0</VersionPrefix>
12-
<VersionSuffix>alpha07</VersionSuffix>
12+
<VersionSuffix>alpha08</VersionSuffix>
1313
<Title>Math.NET Numerics OpenBLAS Provider$(TitleSuffix)</Title>
1414
<Description>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)</Description>
1515
<PackageReleaseNotes>COMPATIBILITY: net5.0, net48 better supported with explicit builds
@@ -26,6 +26,7 @@ Fit.Curve and FindMinimum extended to accept two more parameters
2626
Fixed an index out of bounds issue when calculating BFGS minimizer with one variable ~Shiney
2727
Marcum-Q function ~CHUTORO
2828
Series: stable series summation
29+
Providers: binary names and loading changes to follow conventions and better x-plat
2930
Providers: drop managed reference linear algebra provider
3031
Providers: native providers no longer inherit managed providers, managed now sealed
3132
Providers: MKL provider compilation switched to Intel oneAPI MKL

0 commit comments

Comments
 (0)