diff --git a/RELEASENOTES.md b/RELEASENOTES.md index fcae5049..fafacca0 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,12 @@ +### 4.0.0-beta06 - 2018-02-03 +* Rework conditional compilation to simplify and increase the .Net Standard api surface +* BREAKING: Native provider implementation types internal (but can be constructed explicitly) +* BREAKING: Native provider control API moved from Control to per-provider Control classes +* Control.Describe: human readable summary of the effective Math.NET Numerics configuration +* Fixed a whole range of inline documentation typos *~Jonas Nyrup* +* Build: reworked test build targets, switched to Paket magic mode +* Examples: moved to examples folder, new framework target integration project file examples + ### 4.0.0-beta05 - 2018-01-22 * BUG: Distributions: BetaScaled no longer ignores optional random source parameter * BUG: Trigonometry: Complex trigonometric functions behave on large imput *~diluculo* diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 4cd360ee..1ecb983b 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -46,7 +46,7 @@ open System.Runtime.InteropServices [] [] -[] +[] [] [] diff --git a/src/FSharp/FSharp.fsproj b/src/FSharp/FSharp.fsproj index 793e459a..ae6f88f7 100644 --- a/src/FSharp/FSharp.fsproj +++ b/src/FSharp/FSharp.fsproj @@ -9,9 +9,9 @@ true MathNet.Numerics.FSharp 4.0.0 - beta05 - 4.0.0-beta05 - 4.0.0-beta05 + beta06 + 4.0.0-beta06 + 4.0.0-beta06 4.0.0.0 4.0.0.0 Math.NET Numerics for F# @@ -24,9 +24,13 @@ https://numerics.mathdotnet.com/License.html https://numerics.mathdotnet.com/ https://www.mathdotnet.com/images/MathNet128.png - BUG: Distributions: BetaScaled no longer ignores optional random source parameter -BUG: Trigonometry: Complex trigonometric functions behave on large imput ~diluculo -All: code quality fixes ~Jonas Nyrup + Rework conditional compilation to simplify and increase the .Net Standard api surface +BREAKING: Native provider implementation types internal (but can be constructed explicitly) +BREAKING: Native provider control API moved from Control to per-provider Control classes +Control.Describe: human readable summary of the effective Math.NET Numerics configuration +Fixed a whole range of inline documentation typos ~Jonas Nyrup +Build: reworked test build targets, switched to Paket magic mode +Examples: moved to examples folder, new framework target integration project file examples 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 0add45c2..e070b06d 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -12,7 +12,7 @@ open System.Runtime.InteropServices [] [] -[] +[] [] [] diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index 22392a3a..f8a30514 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -9,9 +9,9 @@ true MathNet.Numerics 4.0.0 - beta05 - 4.0.0-beta05 - 4.0.0-beta05 + beta06 + 4.0.0-beta06 + 4.0.0-beta06 4.0.0.0 4.0.0.0 Math.NET Numerics @@ -24,9 +24,13 @@ https://numerics.mathdotnet.com/License.html https://numerics.mathdotnet.com/ https://www.mathdotnet.com/images/MathNet128.png - BUG: Distributions: BetaScaled no longer ignores optional random source parameter -BUG: Trigonometry: Complex trigonometric functions behave on large imput ~diluculo -All: code quality fixes ~Jonas Nyrup + Rework conditional compilation to simplify and increase the .Net Standard api surface +BREAKING: Native provider implementation types internal (but can be constructed explicitly) +BREAKING: Native provider control API moved from Control to per-provider Control classes +Control.Describe: human readable summary of the effective Math.NET Numerics configuration +Fixed a whole range of inline documentation typos ~Jonas Nyrup +Build: reworked test build targets, switched to Paket magic mode +Examples: moved to examples folder, new framework target integration project file examples 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 07fdb883..3edfc362 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-beta05")] +[assembly: AssemblyInformationalVersion("4.0.0-beta06")] [assembly: UseLinearAlgebraProvider]