Skip to content

Commit 07ad91b

Browse files
committed
Bump version to 7.9.0
1 parent 7a5bca9 commit 07ad91b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

release/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 7.9.0 - 21.08.2023
2+
3+
* Updates FSAC to 0.62.0 - bringing the language features and tooling enhancement from the 7.0.400 SDKs to Ionide.
4+
* A massive [enhancement to the test explorer integration](https://github.com/ionide/ionide-vscode-fsharp/pull/1874) was contributed by @farlee2121! Thank you! This new version uses the `dotnet test` listing as the source of truth, and allows go-to-definition.
5+
* Update vscode-helpers to have better termination on all platforms.
6+
17
### 7.8.5 - 26.07.2023
28
* [Disable GCHeapCount and GCNoAffinitize for net6.0](https://github.com/ionide/ionide-vscode-fsharp/pull/1900) (Thanks @TheAngryByrd!)
39

release/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,5 +1753,5 @@
17531753
"type": "git",
17541754
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
17551755
},
1756-
"version": "7.8.5"
1757-
}
1756+
"version": "7.9.0"
1757+
}

src/Components/LineLens/LineLens.fs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ module DecorationUpdate =
101101
LanguageService.signatureData uri range.StartLine (range.StartColumn - 1)
102102
|> Async.AwaitPromise
103103

104-
return signaturesResult |> Option.map (fun r -> range|>CodeRange.fromDTO, formatSignature r.Data)
104+
return
105+
signaturesResult
106+
|> Option.map (fun r -> range |> CodeRange.fromDTO, formatSignature r.Data)
105107
with e ->
106108
logger.Error("Error getting signature %o", e)
107109
return None

0 commit comments

Comments
 (0)