Browse Source

Release v4.7.0

pull/599/merge v4.7.0
Christoph Ruegg 8 years ago
parent
commit
d8c190206e
  1. 10
      RELEASENOTES.md
  2. 3
      src/Data.Tests/app.config
  3. 3
      src/Data/Matlab/app.config
  4. 3
      src/Data/Text/app.config
  5. 4
      src/FSharp.Tests/App.config
  6. 6
      src/FSharp.Tests/AssemblyInfo.fs
  7. 1
      src/FSharp.Tests/FSharp.Tests.fsproj
  8. 6
      src/FSharp/AssemblyInfo.fs
  9. 14
      src/FSharp/FSharp.fsproj
  10. 3
      src/FSharp/app.config
  11. 1
      src/Numerics.Tests/Numerics.Tests.csproj
  12. 6
      src/Numerics.Tests/Properties/AssemblyInfo.cs
  13. 3
      src/Numerics.Tests/app.config
  14. 14
      src/Numerics/Numerics.csproj
  15. 3
      src/Numerics/app.config
  16. 4
      src/TestData/Properties/AssemblyInfo.cs

10
RELEASENOTES.md

@ -1,3 +1,13 @@
### 4.7.0 - 2018-11-11
* Special Functions: Airy functions Ai, Bi *~Jong Hyun Kim*
* Special Functions: Bessel functions of the first and second kind *~Jong Hyun Kim*
* Special Functions: Modified Bessel functions of the first and second kind *~Jong Hyun Kim*
* Special Functions: Spherical Bessel functions of the first and second kind *~Jong Hyun Kim*
* Special Functions: Hankel functions of the first and second kind *~Jong Hyun Kim*
* Special Functions: Kelvin functions of the first and second kind, and derivatives *~Jong Hyun Kim*
* Linear Algebra: optimized sparse implementation of transpose-multiply *~Richard Reader*
* Linear Algebra: optimized range checking in vectors and matrices
### 4.6.0 - 2018-10-19
* Polynomial: New Polynomial data structure *~Tobias Glaubach*
* Statistics: Correlate.Auto auto correlation *~Tobias Glaubach*

3
src/Data.Tests/app.config

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

3
src/Data/Matlab/app.config

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

3
src/Data/Text/app.config

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

4
src/FSharp.Tests/App.config

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

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.6.0.0")>]
[<assembly: AssemblyFileVersion("4.6.0.0")>]
[<assembly: AssemblyInformationalVersion("4.6.0")>]
[<assembly: AssemblyVersion("4.7.0.0")>]
[<assembly: AssemblyFileVersion("4.7.0.0")>]
[<assembly: AssemblyInformationalVersion("4.7.0")>]
[<assembly: ComVisible(false)>]
[<assembly: Guid("C9AA6156-F799-42E4-B50D-2E88AD7D1750")>]

1
src/FSharp.Tests/FSharp.Tests.fsproj

@ -32,7 +32,6 @@
<Compile Include="QuaternionTests.fs" />
<Compile Include="Main.fs" />
<None Include="paket.references" />
<None Include="App.config" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>

6
src/FSharp/AssemblyInfo.fs

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

14
src/FSharp/FSharp.fsproj

@ -7,14 +7,19 @@
<RootNamespace>MathNet.Numerics</RootNamespace>
<IsPackable>true</IsPackable>
<PackageId>MathNet.Numerics.FSharp$(PackageIdSuffix)</PackageId>
<VersionPrefix>4.6.0</VersionPrefix>
<VersionPrefix>4.7.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>Polynomial: New Polynomial data structure ~Tobias Glaubach
Statistics: Correlate.Auto auto correlation ~Tobias Glaubach
Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray function</PackageReleaseNotes>
<PackageReleaseNotes>Special Functions: Airy functions Ai, Bi ~Jong Hyun Kim
Special Functions: Bessel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Modified Bessel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Spherical Bessel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Hankel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Kelvin functions of the first and second kind, and derivatives ~Jong Hyun Kim
Linear Algebra: optimized sparse implementation of transpose-multiply ~Richard Reader
Linear Algebra: optimized range checking in vectors and matrices</PackageReleaseNotes>
<PackageTags>fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
<IsTool>false</IsTool>
<NeutralLanguage>en</NeutralLanguage>
@ -30,7 +35,6 @@ Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray fun
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Numerics\Numerics.csproj" />
<Content Include="app.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />

3
src/FSharp/app.config

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

1
src/Numerics.Tests/Numerics.Tests.csproj

@ -17,7 +17,6 @@
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml" />
<Content Include="app.config" />
</ItemGroup>
<ItemGroup>
<None Remove="TestResult.xml" />

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.6.0.0")]
[assembly: AssemblyFileVersion("4.6.0.0")]
[assembly: AssemblyInformationalVersion("4.6.0")]
[assembly: AssemblyVersion("4.7.0.0")]
[assembly: AssemblyFileVersion("4.7.0.0")]
[assembly: AssemblyInformationalVersion("4.7.0")]
[assembly: UseLinearAlgebraProvider]

3
src/Numerics.Tests/app.config

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

14
src/Numerics/Numerics.csproj

@ -7,14 +7,19 @@
<RootNamespace>MathNet.Numerics</RootNamespace>
<IsPackable>true</IsPackable>
<PackageId>MathNet.Numerics$(PackageIdSuffix)</PackageId>
<VersionPrefix>4.6.0</VersionPrefix>
<VersionPrefix>4.7.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>Polynomial: New Polynomial data structure ~Tobias Glaubach
Statistics: Correlate.Auto auto correlation ~Tobias Glaubach
Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray function</PackageReleaseNotes>
<PackageReleaseNotes>Special Functions: Airy functions Ai, Bi ~Jong Hyun Kim
Special Functions: Bessel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Modified Bessel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Spherical Bessel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Hankel functions of the first and second kind ~Jong Hyun Kim
Special Functions: Kelvin functions of the first and second kind, and derivatives ~Jong Hyun Kim
Linear Algebra: optimized sparse implementation of transpose-multiply ~Richard Reader
Linear Algebra: optimized range checking in vectors and matrices</PackageReleaseNotes>
<PackageTags>math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
<IsTool>false</IsTool>
<NeutralLanguage>en</NeutralLanguage>
@ -33,7 +38,6 @@ Curve Fitting: Fit.Curve for non-linear least-squares fitting to an arbitray fun
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="System.Runtime.Serialization" />
<Content Include="app.config" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>

3
src/Numerics/app.config

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
</configuration>

4
src/TestData/Properties/AssemblyInfo.cs

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

Loading…
Cancel
Save