Skip to content

Commit 68dd5e5

Browse files
committed
Bump version to 7.2.0
1 parent 774ea9d commit 68dd5e5

File tree

3 files changed

+28
-19
lines changed

3 files changed

+28
-19
lines changed

release/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
### 7.2.0 - 24.08.2022
2+
3+
* [Group discovered tests by namespace](https://github.com/ionide/ionide-vscode-fsharp/pull/1766) (thanks @kojo12228!)
4+
* [Many](https://github.com/ionide/ionide-vscode-fsharp/pull/1775), [many](https://github.com/ionide/ionide-vscode-fsharp/pull/1776) [fixes](https://github.com/ionide/ionide-vscode-fsharp/pull/1777) to the add and remove files functionality (thanks @MangelMaxime!)
5+
* [Added support for gitpod](https://github.com/ionide/ionide-vscode-fsharp/pull/1779) (thanks @purkhusid!)
6+
* Update and use FSAC 0.57.2 to pick up many fixes, especially for .net 6 and .net 7 SDK support. Changes can be seen at the release notes for [0.57.0](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.57.0), [0.57.1](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.57.1), and [0.57.2](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.57.2).
7+
18
### 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)
9+
10+
* Update FSAC to 0.56.2 for [these changes](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.56.2)
311
* Removed unused FAKE configuration settings and handler code
412
* Massively improve error messages when dotnet isn't found (thanks @MangelMaxime!)
513
* Improve FSI management (thanks @MangelMaxime!)

release/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,7 @@
12621262
"command": "fsharp.explorer.addExistingFile",
12631263
"group": "2_modifications@2",
12641264
"when": "viewItem == ionide.projectExplorer.project"
1265-
},
1265+
},
12661266
{
12671267
"command": "fsharp.explorer.project.generateFSI",
12681268
"group": "3_fsi@1",
@@ -1596,5 +1596,5 @@
15961596
"type": "git",
15971597
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
15981598
},
1599-
"version": "7.1.0"
1600-
}
1599+
"version": "7.2.0"
1600+
}

src/Core/LanguageService.fs

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,7 @@ Consider:
444444
let req: FsProj.DotnetFileRequest =
445445
{ FsProj = fsproj
446446
FileVirtualPath = file }
447+
447448
cl.sendRequest ("fsproj/addExistingFile", req)
448449
|> Promise.map (fun (res: Types.PlainNotification) -> ())
449450

@@ -708,21 +709,21 @@ Consider:
708709
let fsacPath = fsacPathForTfm tfm
709710
printfn "Parsed TFM to fsac path: %s" fsacPath
710711
return [], [], fsacPath
711-
// if v.major >= 6.0 then
712-
// // when we run on a sdk higher than 6.x (aka what FSAC is currently built/targeted for),
713-
// // we have to tell the runtime to allow it to actually run on that runtime (instead of presenting 6.x as 5.x)
714-
// // in order for msbuild resolution to work
715-
// let args = [ "--roll-forward"; "LatestMajor" ]
716-
717-
// let envs =
718-
// if v.prerelease <> null || v.prerelease.Count > 0 then
719-
// [ "DOTNET_ROLL_FORWARD_TO_PRERELEASE", box 1 ]
720-
// else
721-
// []
722-
723-
// return args, envs, fsacPath
724-
// else
725-
// return [], [], fsacPath
712+
// if v.major >= 6.0 then
713+
// // when we run on a sdk higher than 6.x (aka what FSAC is currently built/targeted for),
714+
// // we have to tell the runtime to allow it to actually run on that runtime (instead of presenting 6.x as 5.x)
715+
// // in order for msbuild resolution to work
716+
// let args = [ "--roll-forward"; "LatestMajor" ]
717+
718+
// let envs =
719+
// if v.prerelease <> null || v.prerelease.Count > 0 then
720+
// [ "DOTNET_ROLL_FORWARD_TO_PRERELEASE", box 1 ]
721+
// else
722+
// []
723+
724+
// return args, envs, fsacPath
725+
// else
726+
// return [], [], fsacPath
726727
}
727728

728729
let userDotnetArgs = "FSharp.fsac.dotnetArgs" |> Configuration.get [||]

0 commit comments

Comments
 (0)