diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 233b6411..5a01885f 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,6 @@ +### 3.7.1 - 2015-09-10 +* BUG: Linear Algebra: fix optimized path of adding a sparse matrix to itself. + ### 3.7.0 - 2015-05-09 * Statistics: RunningStatistics now propagates min/max on Combine, handles NaN on Push. * Statistics: new MovingStatistics providing descriptive statistics over a moving window *~Marcus Cuda* diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 6a535df6..f60ad09b 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 bccb3b72..0e7581a3 100644 --- a/src/FSharpUnitTests/AssemblyInfo.fs +++ b/src/FSharpUnitTests/AssemblyInfo.fs @@ -10,9 +10,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/Numerics/Properties/AssemblyInfo.cs b/src/Numerics/Properties/AssemblyInfo.cs index 6fa17890..c5c5b248 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.7.0.0")] -[assembly: AssemblyFileVersion("3.7.0.0")] -[assembly: AssemblyInformationalVersion("3.7.0")] +[assembly: AssemblyVersion("3.7.1.0")] +[assembly: AssemblyFileVersion("3.7.1.0")] +[assembly: AssemblyInformationalVersion("3.7.1")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index 52fdd7bd..3269faf2 100644 --- a/src/UnitTests/Properties/AssemblyInfo.cs +++ b/src/UnitTests/Properties/AssemblyInfo.cs @@ -9,8 +9,8 @@ using MathNet.Numerics.UnitTests; [assembly: ComVisible(false)] [assembly: Guid("04157581-63f3-447b-a277-83c6e69126a4")] -[assembly: AssemblyVersion("3.7.0.0")] -[assembly: AssemblyFileVersion("3.7.0.0")] -[assembly: AssemblyInformationalVersion("3.7.0")] +[assembly: AssemblyVersion("3.7.1.0")] +[assembly: AssemblyFileVersion("3.7.1.0")] +[assembly: AssemblyInformationalVersion("3.7.1")] [assembly: UseLinearAlgebraProvider]