Skip to content

Commit 50cea9a

Browse files
committed
Bump version to 7.7.1
1 parent c04b0ab commit 50cea9a

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

release/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 7.7.1 - 01.07.2023
2+
3+
* Updates FSAC to 0.60.1, which brings enhancements to the XML Documentation codefix as well as new settings for optimizing the built-in Analyzers and text handling. Check out the [release notes](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.60.1) for more details.
4+
* Fixes running FSAC on .NET 8 preview SDKs
5+
* Adds VSCode settings for the new FSAC features listed above.
6+
* Adds a default association of `msbuild` for project files, which enables discovery of msbuild VSCode extensions to guide users to install them. We highly suggest the [TinToy Project Tools](https://marketplace.visualstudio.com/items?itemName=tintoy.msbuild-project-tools) extension for working with project files.
7+
18
### 7.7.0 - 14.06.2023
29

310
* Updates FSAC to 0.60.0, which updates the compiler services to match .NET SDK 7.0.300, and includes a helpful XMLDoc generation codefix. Check out the [release notes](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.60.0) for more details.

release/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,6 @@
548548
"scope": "machine-overridable",
549549
"type": "string"
550550
},
551-
552551
"FSharp.fsac.sourceTextImplementation": {
553552
"default": "NamedText",
554553
"description": "EXPERIMENTAL. Enables the use of a new source text implementation. This may have better memory characteristics. Requires restart.",
@@ -846,7 +845,6 @@
846845
"description": "Enables detection of unused opens",
847846
"type": "boolean"
848847
},
849-
850848
"FSharp.unusedOpensAnalyzerExclusions": {
851849
"default": [
852850
".*\\.g\\.fs",
@@ -1721,5 +1719,5 @@
17211719
"type": "git",
17221720
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
17231721
},
1724-
"version": "7.7.0"
1725-
}
1722+
"version": "7.7.1"
1723+
}

src/Components/Fsi.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ module Fsi =
431431
failwith "unable to spawn FSI"
432432
// this coercion could be to either type - TerminalOptions _or_ ExtensionTerminalOptions
433433
// we don't actually care here so I picked the first Case on the U2 here.
434-
let terminal = window.createTerminal (!!profile.options : TerminalOptions)
434+
let terminal = window.createTerminal (!!profile.options: TerminalOptions)
435435

436436
// Wait for the new terminal to be ready
437437
let! newTerminal =

0 commit comments

Comments
 (0)