File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ### 0.18.1 - 2017-12-23
2+ * Code Signing: SHA2 (256) instead of SHA1
3+
14### 0.18.0 - 2017-11-08
25* Calculus: fix derivatives of Asin, Acos, Atan * ~ diluculo*
36* Trigonometric: fix contraction of cos(a)* sin(b) * ~ diluculo*
Original file line number Diff line number Diff line change @@ -185,11 +185,11 @@ let provideNuGetExtraFiles path (bundle:Bundle) (pack:Package) =
185185let sign fingerprint timeserver files =
186186 files
187187 |> Seq.map ( sprintf " \" %s \" " )
188- |> Seq.map ( fun file -> sprintf """ sign /v /sha1 "%s " /t "%s " %s """ fingerprint timeserver file)
188+ |> Seq.map ( fun file -> sprintf """ sign /v /fd sha256 / sha1 "%s " /tr "%s " /td sha256 %s """ fingerprint timeserver file)
189189 |> Seq.iter ( fun arguments ->
190190 let result =
191191 ExecProcess ( fun info ->
192- info.FileName <- """ C:\Program Files (x86)\Windows Kits\10\bin\x86\signtool.exe """
192+ info.FileName <- findToolInSubPath " signtool.exe " """ C:\Program Files (x86)\Windows Kits\10\bin\x64 """
193193 info.Arguments <- arguments) TimeSpan.MaxValue
194194 if result <> 0 then
195195 failwithf " Error during SignTool call " )
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ open System.Runtime.InteropServices
4444[<assembly: AssemblyCulture( " " ) >]
4545[<assembly: NeutralResourcesLanguage( " en" ) >]
4646
47- [<assembly: AssemblyVersion( " 0.18.0 .0" ) >]
48- [<assembly: AssemblyFileVersion( " 0.18.0 .0" ) >]
49- [<assembly: AssemblyInformationalVersion( " 0.18.0 " ) >]
47+ [<assembly: AssemblyVersion( " 0.18.1 .0" ) >]
48+ [<assembly: AssemblyFileVersion( " 0.18.1 .0" ) >]
49+ [<assembly: AssemblyInformationalVersion( " 0.18.1 " ) >]
5050
5151()
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ open System.Runtime.InteropServices
99[<assembly: AssemblyCompany( " Math.NET Project" ) >]
1010[<assembly: AssemblyProduct( " Math.NET Symbolics" ) >]
1111
12- [<assembly: AssemblyVersion( " 0.18.0 .0" ) >]
13- [<assembly: AssemblyFileVersion( " 0.18.0 .0" ) >]
14- [<assembly: AssemblyInformationalVersion( " 0.18.0 " ) >]
12+ [<assembly: AssemblyVersion( " 0.18.1 .0" ) >]
13+ [<assembly: AssemblyFileVersion( " 0.18.1 .0" ) >]
14+ [<assembly: AssemblyInformationalVersion( " 0.18.1 " ) >]
1515
1616()
You can’t perform that action at this time.
0 commit comments