From b6b5d5bdae2b59ba159faf125222d1333a481b59 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Tue, 24 Jun 2014 14:11:04 +0200 Subject: [PATCH] Release: v3.0.1 --- RELEASENOTES.md | 5 ++++- src/FSharp/AssemblyInfo.fs | 6 +++--- src/FSharpUnitTests/AssemblyInfo.fs | 6 +++--- src/Numerics/Properties/AssemblyInfo.cs | 6 +++--- src/UnitTests/Properties/AssemblyInfo.cs | 6 +++--- 5 files changed, 16 insertions(+), 13 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 190ab9a5..fcd77ae0 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,6 @@ +### 3.0.1 - 2014-06-22 +* Patch release, fixing a bug in new Matrix.ToMatrixString and Vector.ToVectorString routines. + ### 3.0.0 - 2014-06-21 * First stable v3 release: * [Upgrade Notes](https://github.com/mathnet/mathnet-numerics/wiki/Upgrading-to-Version-3) @@ -22,7 +25,7 @@ * FoldRows renamed to FoldByRow, now operates on and returns arrays; same for columns. **Breaking.** * New FoldRows and ReduceRows that operate on row vectors; same for columns * Split Map into Map and MapConvert (allows optimization in common in-place case) - * Row and columns sums and absolute-sums + * Row and column sums and absolute-sums * F# DiagonalMatrix module to create diagonal matrices without using the builder * F# Matrix module extended with sumRows, sumAbsRows, normRows; same for columns * Build: extend build and release automation, automatic releases also for data extensions and native providers diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index de8a7805..3c187d00 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -45,9 +45,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index 6bb6cc40..2d45e03b 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -9,9 +9,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/Numerics/Properties/AssemblyInfo.cs b/src/Numerics/Properties/AssemblyInfo.cs index c7aaecb6..0ff7eb9f 100644 --- a/src/Numerics/Properties/AssemblyInfo.cs +++ b/src/Numerics/Properties/AssemblyInfo.cs @@ -45,9 +45,9 @@ using System.Runtime.InteropServices; [assembly: CLSCompliant(true)] [assembly: NeutralResourcesLanguage("en")] -[assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.0.0")] -[assembly: AssemblyInformationalVersion("3.0.0")] +[assembly: AssemblyVersion("3.0.1.0")] +[assembly: AssemblyFileVersion("3.0.1.0")] +[assembly: AssemblyInformationalVersion("3.0.1")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index c4c3c271..69238324 100644 --- a/src/UnitTests/Properties/AssemblyInfo.cs +++ b/src/UnitTests/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ using MathNet.Numerics.UnitTests; [assembly: ComVisible(false)] [assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")] -[assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.0.0")] -[assembly: AssemblyInformationalVersion("3.0.0")] +[assembly: AssemblyVersion("3.0.1.0")] +[assembly: AssemblyFileVersion("3.0.1.0")] +[assembly: AssemblyInformationalVersion("3.0.1")] [assembly: UseLinearAlgebraProvider]