diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 439f2bb8..240a27b3 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,7 @@ +### 3.11.1 - 2016-04-24 +* BUG: Linear Algebra: sparse vector pointwise multiply/divide to itself +* BUG: Linear Algebra: Vector.ToVectorString if the first column is wider than maxWidth + ### 3.11.0 - 2016-02-13 * Special Functions: error functions to use static coefficient arrays (perf) *~Joel Sleppy* * Integration: Gauss-Legendre Rule (1D, 2D) *~Larz White* diff --git a/build.fsx b/build.fsx index 979701ab..b20f46ed 100644 --- a/build.fsx +++ b/build.fsx @@ -736,7 +736,7 @@ Target "DataNuGet" (fun _ -> CleanDir "out/Data/packages/NuGet" nugetPackExtension dataBundle "out/Data/packages/NuGet") "DataBuild" ?=> "DataNuGet" - + // -------------------------------------------------------------------------------------- // Documentation @@ -858,7 +858,7 @@ let publishReleaseTag title prefix version notes = // inspired by Deedle/tpetricek let tagName = prefix + "v" + version let tagMessage = String.concat Environment.NewLine [title + " v" + version; ""; notes ] - let cmd = sprintf """tag -a %s -m "%s" """ tagName tagMessage + let cmd = sprintf """tag -a %s -s -m "%s" """ tagName tagMessage Git.CommandHelper.runSimpleGitCommand "." cmd |> printfn "%s" let _, remotes, _ = Git.CommandHelper.runGitCommand "." "remote -v" let main = remotes |> Seq.find (fun s -> s.Contains("(push)") && s.Contains("mathnet/mathnet-numerics")) diff --git a/src/FSharp/AssemblyInfo.fs b/src/FSharp/AssemblyInfo.fs index 2fcb0199..f2f100fe 100644 --- a/src/FSharp/AssemblyInfo.fs +++ b/src/FSharp/AssemblyInfo.fs @@ -44,9 +44,9 @@ open System.Runtime.InteropServices [] [] -[] -[] -[] +[] +[] +[] #if PORTABLE #else diff --git a/src/FSharpUnitTests/AssemblyInfo.fs b/src/FSharpUnitTests/AssemblyInfo.fs index 85cca88e..ae6b10d7 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 f7f4fee1..58730780 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.11.0.0")] -[assembly: AssemblyFileVersion("3.11.0.0")] -[assembly: AssemblyInformationalVersion("3.11.0")] +[assembly: AssemblyVersion("3.11.1.0")] +[assembly: AssemblyFileVersion("3.11.1.0")] +[assembly: AssemblyInformationalVersion("3.11.1")] #if PORTABLE diff --git a/src/UnitTests/Properties/AssemblyInfo.cs b/src/UnitTests/Properties/AssemblyInfo.cs index 8f905c5f..68555bfa 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.11.0.0")] -[assembly: AssemblyFileVersion("3.11.0.0")] -[assembly: AssemblyInformationalVersion("3.11.0")] +[assembly: AssemblyVersion("3.11.1.0")] +[assembly: AssemblyFileVersion("3.11.1.0")] +[assembly: AssemblyInformationalVersion("3.11.1")] [assembly: UseLinearAlgebraProvider]