File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Expand file tree Collapse file tree 4 files changed +11
-8
lines changed 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
+
1
4
### 0.18.0 - 2017-11-08
2
5
* Calculus: fix derivatives of Asin, Acos, Atan * ~ diluculo*
3
6
* 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) =
185
185
let sign fingerprint timeserver files =
186
186
files
187
187
|> 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)
189
189
|> Seq.iter ( fun arguments ->
190
190
let result =
191
191
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 """
193
193
info.Arguments <- arguments) TimeSpan.MaxValue
194
194
if result <> 0 then
195
195
failwithf " Error during SignTool call " )
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ open System.Runtime.InteropServices
44
44
[<assembly: AssemblyCulture( " " ) >]
45
45
[<assembly: NeutralResourcesLanguage( " en" ) >]
46
46
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 " ) >]
50
50
51
51
()
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ open System.Runtime.InteropServices
9
9
[<assembly: AssemblyCompany( " Math.NET Project" ) >]
10
10
[<assembly: AssemblyProduct( " Math.NET Symbolics" ) >]
11
11
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 " ) >]
15
15
16
16
()
You can’t perform that action at this time.
0 commit comments