Skip to content

Commit 379efe4

Browse files
committed
Bump version to 7.1.0
1 parent d5a3942 commit 379efe4

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

release/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### 7.1.0 - 19.08.2022
2+
* Update FSAC to 0.56.12 for [these changes](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.56.2)
3+
* Removed unused FAKE configuration settings and handler code
4+
* Massively improve error messages when dotnet isn't found (thanks @MangelMaxime!)
5+
* Improve FSI management (thanks @MangelMaxime!)
6+
* Fix solution explorer icons for solutions and projects (thanks @MangelMaxime!)
7+
* Fix logic in 'add file to project' (thanks @MangelMaxime!)
8+
* Fix hangs on double-backticked identifiers (thanks @MangelMaxime!)
9+
110
### 7.0.0 - 23.07.2022
211

312
* Remove custom inlay hints implementation

release/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,5 +1578,5 @@
15781578
"type": "git",
15791579
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
15801580
},
1581-
"version": "7.0.0"
1582-
}
1581+
"version": "7.1.0"
1582+
}

src/Core/LanguageService.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,13 +437,14 @@ Consider:
437437
cl.sendRequest ("fsproj/addFile", req)
438438
|> Promise.map (fun (res: Types.PlainNotification) -> ())
439439

440-
let fsprojRemoveFile (fsproj : string) (file : string) =
440+
let fsprojRemoveFile (fsproj: string) (file: string) =
441441
match client with
442442
| None -> Promise.empty
443443
| Some cl ->
444444
let req: FsProj.DotnetFileRequest =
445445
{ FsProj = fsproj
446446
FileVirtualPath = file }
447+
447448
cl.sendRequest ("fsproj/removeFile", req)
448449
|> Promise.map (fun (res: Types.PlainNotification) -> ())
449450

0 commit comments

Comments
 (0)