Skip to content

Commit

Permalink
Bump version to 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Aug 19, 2022
1 parent d5a3942 commit 379efe4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions release/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 7.1.0 - 19.08.2022
* Update FSAC to 0.56.12 for [these changes](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.56.2)
* Removed unused FAKE configuration settings and handler code
* Massively improve error messages when dotnet isn't found (thanks @MangelMaxime!)
* Improve FSI management (thanks @MangelMaxime!)
* Fix solution explorer icons for solutions and projects (thanks @MangelMaxime!)
* Fix logic in 'add file to project' (thanks @MangelMaxime!)
* Fix hangs on double-backticked identifiers (thanks @MangelMaxime!)

### 7.0.0 - 23.07.2022

* Remove custom inlay hints implementation
Expand Down
4 changes: 2 additions & 2 deletions release/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1578,5 +1578,5 @@
"type": "git",
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
},
"version": "7.0.0"
}
"version": "7.1.0"
}
3 changes: 2 additions & 1 deletion src/Core/LanguageService.fs
Original file line number Diff line number Diff line change
Expand Up @@ -437,13 +437,14 @@ Consider:
cl.sendRequest ("fsproj/addFile", req)
|> Promise.map (fun (res: Types.PlainNotification) -> ())

let fsprojRemoveFile (fsproj : string) (file : string) =
let fsprojRemoveFile (fsproj: string) (file: string) =
match client with
| None -> Promise.empty
| Some cl ->
let req: FsProj.DotnetFileRequest =
{ FsProj = fsproj
FileVirtualPath = file }

cl.sendRequest ("fsproj/removeFile", req)
|> Promise.map (fun (res: Types.PlainNotification) -> ())

Expand Down

0 comments on commit 379efe4

Please sign in to comment.