Skip to content

Commit d26ea3f

Browse files
committed
Merge tag 'v0.18.1'
Math.NET Symbolics v0.18.1 Code Signing: SHA2 (256) instead of SHA1
2 parents d64b399 + 26fa152 commit d26ea3f

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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*

build/build-framework.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ let provideNuGetExtraFiles path (bundle:Bundle) (pack:Package) =
185185
let 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 ")

src/Symbolics/AssemblyInfo.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
()

src/SymbolicsUnitTests/AssemblyInfo.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
()

0 commit comments

Comments
 (0)