Browse Source

Release v4.0.0-beta02

build v4.0.0-beta02
Christoph Ruegg 9 years ago
parent
commit
e5135f1e1b
  1. 4
      RELEASENOTES.md
  2. 2
      src/FSharp/AssemblyInfo.fs
  3. 17
      src/FSharp/FSharp.fsproj
  4. 2
      src/FSharpUnitTests/AssemblyInfo.fs
  5. 17
      src/Numerics/Numerics.csproj
  6. 2
      src/UnitTests/Properties/AssemblyInfo.cs

4
RELEASENOTES.md

@ -1,3 +1,7 @@
### 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*
### 4.0.0-beta01 - 2018-01-07
* BREAKING: drop obsolete functionality (which has been marked as obsolete for a while)
* BREAKING: drop support for .Net 3.5 and PCL profiles

2
src/FSharp/AssemblyInfo.fs

@ -46,7 +46,7 @@ open System.Runtime.InteropServices
[<assembly: AssemblyVersion("4.0.0.0")>]
[<assembly: AssemblyFileVersion("4.0.0.0")>]
[<assembly: AssemblyInformationalVersion("4.0.0-beta01")>]
[<assembly: AssemblyInformationalVersion("4.0.0-beta02")>]
#if PORTABLE || NETSTANDARD
#else

17
src/FSharp/FSharp.fsproj

@ -8,9 +8,9 @@
<IsPackable>true</IsPackable>
<PackageId>MathNet.Numerics.FSharp</PackageId>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionSuffix>beta01</VersionSuffix>
<PackageVersion>4.0.0-beta01</PackageVersion>
<Version>4.0.0-beta01</Version>
<VersionSuffix>beta02</VersionSuffix>
<PackageVersion>4.0.0-beta02</PackageVersion>
<Version>4.0.0-beta02</Version>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<Title>Math.NET Numerics for F#</Title>
@ -23,15 +23,8 @@
<PackageLicenseUrl>https://numerics.mathdotnet.com/License.html</PackageLicenseUrl>
<PackageProjectUrl>https://numerics.mathdotnet.com/</PackageProjectUrl>
<PackageIconUrl>https://www.mathdotnet.com/images/MathNet128.png</PackageIconUrl>
<PackageReleaseNotes>BREAKING: drop obsolete functionality (which has been marked as obsolete for a while)
BREAKING: drop support for .Net 3.5 and PCL profiles
BREAKING: F#: drop support for .Net 4.0 and PCL profiles
BREAKING: F#: depends on FSharp.Core 4.2.3
Explicit builds for .Net Framework 4.0 and higher and for .Net Standard 1.3 and 2.0
F#: explicit builds for .Net Framework 4.5 and higher and for .Net Standard 1.6 and 2.0
Assemblies are now code-signed with an X.509 certificate, using SHA2-256 hashes
BUG: Ode Solver: fix typo in the Runge-Kutta solvers on time-step handling ~Ksero
BUG: fix Matrix.GetHashCode for wide matrices ~mjmckp</PackageReleaseNotes>
<PackageReleaseNotes>Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula ~Aappo Pulkkinen
Statistics: Kernel Density Estimation ~Christoph Albert</PackageReleaseNotes>
<PackageTags>fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
<IsTool>false</IsTool>
<RepositoryUrl>https://github.com/mathnet/mathnet-numerics</RepositoryUrl>

2
src/FSharpUnitTests/AssemblyInfo.fs

@ -12,7 +12,7 @@ open System.Runtime.InteropServices
[<assembly: AssemblyVersion("4.0.0.0")>]
[<assembly: AssemblyFileVersion("4.0.0.0")>]
[<assembly: AssemblyInformationalVersion("4.0.0-beta01")>]
[<assembly: AssemblyInformationalVersion("4.0.0-beta02")>]
#if PORTABLE || NETSTANDARD
#else

17
src/Numerics/Numerics.csproj

@ -8,9 +8,9 @@
<IsPackable>true</IsPackable>
<PackageId>MathNet.Numerics</PackageId>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionSuffix>beta01</VersionSuffix>
<PackageVersion>4.0.0-beta01</PackageVersion>
<Version>4.0.0-beta01</Version>
<VersionSuffix>beta02</VersionSuffix>
<PackageVersion>4.0.0-beta02</PackageVersion>
<Version>4.0.0-beta02</Version>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<Title>Math.NET Numerics</Title>
@ -23,15 +23,8 @@
<PackageLicenseUrl>https://numerics.mathdotnet.com/License.html</PackageLicenseUrl>
<PackageProjectUrl>https://numerics.mathdotnet.com/</PackageProjectUrl>
<PackageIconUrl>https://www.mathdotnet.com/images/MathNet128.png</PackageIconUrl>
<PackageReleaseNotes>BREAKING: drop obsolete functionality (which has been marked as obsolete for a while)
BREAKING: drop support for .Net 3.5 and PCL profiles
BREAKING: F#: drop support for .Net 4.0 and PCL profiles
BREAKING: F#: depends on FSharp.Core 4.2.3
Explicit builds for .Net Framework 4.0 and higher and for .Net Standard 1.3 and 2.0
F#: explicit builds for .Net Framework 4.5 and higher and for .Net Standard 1.6 and 2.0
Assemblies are now code-signed with an X.509 certificate, using SHA2-256 hashes
BUG: Ode Solver: fix typo in the Runge-Kutta solvers on time-step handling ~Ksero
BUG: fix Matrix.GetHashCode for wide matrices ~mjmckp</PackageReleaseNotes>
<PackageReleaseNotes>Root Finding: Broyden: step size for calculating appox Jacobian, more robust step size formula ~Aappo Pulkkinen
Statistics: Kernel Density Estimation ~Christoph Albert</PackageReleaseNotes>
<PackageTags>math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
<IsTool>false</IsTool>
<RepositoryUrl>https://github.com/mathnet/mathnet-numerics</RepositoryUrl>

2
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-beta01")]
[assembly: AssemblyInformationalVersion("4.0.0-beta02")]
[assembly: UseLinearAlgebraProvider]

Loading…
Cancel
Save