Browse Source

Release v4.10.0

v4 v4.10.0
Christoph Ruegg 6 years ago
parent
commit
982966f704
  1. 5
      RELEASENOTES.md
  2. 6
      src/FSharp.Tests/AssemblyInfo.fs
  3. 6
      src/FSharp/AssemblyInfo.fs
  4. 10
      src/FSharp/FSharp.fsproj
  5. 6
      src/Numerics.Tests/Properties/AssemblyInfo.cs
  6. 10
      src/Numerics/Numerics.csproj
  7. 4
      src/TestData/Properties/AssemblyInfo.cs

5
RELEASENOTES.md

@ -1,3 +1,8 @@
### 4.10.0 - 2020-05-24
* Fractional Calculus: Riemann-Liouville fractional derivative *~Jong Hyun Kim*
* Root Finding: accuracy range validation *~Ryan Grange*
* Root Finding: behavior more consistent between native and managed provider
### 4.9.1 - 2020-04-12
* BUG: Optimization: weights were applied wrongly when evaluating the Jacobian *~Jong Hyun Kim, zhaochenxi*
* BUG: Linear Algebra: F# Matrix.reduceRows was reducing columns instead of rows *~kayanme*

6
src/FSharp.Tests/AssemblyInfo.fs

@ -10,9 +10,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyProduct("Math.NET Numerics")>]
[<assembly: AssemblyCopyright("Copyright (c) Math.NET Project")>]
[<assembly: AssemblyVersion("4.9.1.0")>]
[<assembly: AssemblyFileVersion("4.9.1.0")>]
[<assembly: AssemblyInformationalVersion("4.9.1")>]
[<assembly: AssemblyVersion("4.10.0.0")>]
[<assembly: AssemblyFileVersion("4.10.0.0")>]
[<assembly: AssemblyInformationalVersion("4.10.0")>]
[<assembly: ComVisible(false)>]
[<assembly: Guid("C9AA6156-F799-42E4-B50D-2E88AD7D1750")>]

6
src/FSharp/AssemblyInfo.fs

@ -44,9 +44,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCulture("")>]
[<assembly: NeutralResourcesLanguage("en")>]
[<assembly: AssemblyVersion("4.9.1.0")>]
[<assembly: AssemblyFileVersion("4.9.1.0")>]
[<assembly: AssemblyInformationalVersion("4.9.1")>]
[<assembly: AssemblyVersion("4.10.0.0")>]
[<assembly: AssemblyFileVersion("4.10.0.0")>]
[<assembly: AssemblyInformationalVersion("4.10.0")>]
[<assembly: ComVisible(false)>]
[<assembly: Guid("048BC4EB-CE2B-4040-9967-4784F5405B0F")>]

10
src/FSharp/FSharp.fsproj

@ -7,15 +7,13 @@
<RootNamespace>MathNet.Numerics</RootNamespace>
<IsPackable>true</IsPackable>
<PackageId>MathNet.Numerics.FSharp$(PackageIdSuffix)</PackageId>
<VersionPrefix>4.9.1</VersionPrefix>
<VersionPrefix>4.10.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Title>Math.NET Numerics for F#$(TitleSuffix)</Title>
<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 Framework 4.5 or higher and .Net Standard 1.6 or higher, on Windows, Linux and Mac.$(DescriptionSuffix)</Description>
<PackageReleaseNotes>BUG: Optimization: weights were applied wrongly when evaluating the Jacobian ~Jong Hyun Kim, zhaochenxi
BUG: Linear Algebra: F# Matrix.reduceRows was reducing columns instead of rows ~kayanme
BUG: Distributions: Hypergeometric.CDF no longer returns values &gt; 1.0 ~Manor Askenazi
Documentation: fix missing logarithms, drop old links ~Michel de Ruiter, Guney Ozsan
Build: no longer code-sign the assemblies with a code-signing certificate, since it is too painful.</PackageReleaseNotes>
<PackageReleaseNotes>Fractional Calculus: Riemann-Liouville fractional derivative ~Jong Hyun Kim
Root Finding: accuracy range validation ~Ryan Grange
Root Finding: behavior more consistent between native and managed provider</PackageReleaseNotes>
<PackageTags>fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

6
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.9.1.0")]
[assembly: AssemblyFileVersion("4.9.1.0")]
[assembly: AssemblyInformationalVersion("4.9.1")]
[assembly: AssemblyVersion("4.10.0.0")]
[assembly: AssemblyFileVersion("4.10.0.0")]
[assembly: AssemblyInformationalVersion("4.10.0")]
[assembly: UseLinearAlgebraProvider]

10
src/Numerics/Numerics.csproj

@ -7,15 +7,13 @@
<RootNamespace>MathNet.Numerics</RootNamespace>
<IsPackable>true</IsPackable>
<PackageId>MathNet.Numerics$(PackageIdSuffix)</PackageId>
<VersionPrefix>4.9.1</VersionPrefix>
<VersionPrefix>4.10.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Title>Math.NET Numerics$(TitleSuffix)</Title>
<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 Framework 4.0 or higher and .Net Standard 1.3 or higher, on Windows, Linux and Mac.$(DescriptionSuffix)</Description>
<PackageReleaseNotes>BUG: Optimization: weights were applied wrongly when evaluating the Jacobian ~Jong Hyun Kim, zhaochenxi
BUG: Linear Algebra: F# Matrix.reduceRows was reducing columns instead of rows ~kayanme
BUG: Distributions: Hypergeometric.CDF no longer returns values &gt; 1.0 ~Manor Askenazi
Documentation: fix missing logarithms, drop old links ~Michel de Ruiter, Guney Ozsan
Build: no longer code-sign the assemblies with a code-signing certificate, since it is too painful.</PackageReleaseNotes>
<PackageReleaseNotes>Fractional Calculus: Riemann-Liouville fractional derivative ~Jong Hyun Kim
Root Finding: accuracy range validation ~Ryan Grange
Root Finding: behavior more consistent between native and managed provider</PackageReleaseNotes>
<PackageTags>math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

4
src/TestData/Properties/AssemblyInfo.cs

@ -14,5 +14,5 @@ using System.Runtime.InteropServices;
[assembly: Guid("a4a6a08e-5265-4608-a43d-e4f2e210ba2d")]
[assembly: AssemblyVersion("4.9.1.0")]
[assembly: AssemblyFileVersion("4.9.1.0")]
[assembly: AssemblyVersion("4.10.0.0")]
[assembly: AssemblyFileVersion("4.10.0.0")]

Loading…
Cancel
Save