Skip to content

Commit 9492f16

Browse files
committed
Bump version to 7.12.0
1 parent 382d16b commit 9492f16

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

release/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
### 7.12.0 - 16.09.2023
3+
* [Add a leading space to the default prefix in LineLens.config](https://github.com/ionide/ionide-vscode-fsharp/pull/1928) (Thanks @Numpsy)
4+
* [Make LineLens.configChangedHandler update the config directly, instead of through a ref](https://github.com/ionide/ionide-vscode-fsharp/pull/1929) (Thanks @Numpsy)
5+
* [check user provided string for any content before renaming file to it](https://github.com/ionide/ionide-vscode-fsharp/pull/1932) (Thanks @dawedawe!)
6+
* [Adds Test debugging support](https://github.com/ionide/ionide-vscode-fsharp/pull/1927) (Thanks @farlee2121!)
7+
28
### 7.11.0 - 06.09.2023
39

410
* Update to FSAC 0.63.0. Check out the [release notes](https://github.com/fsharp/FsAutoComplete/releases/tag/v0.63.0) for more details.

release/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1758,5 +1758,5 @@
17581758
"type": "git",
17591759
"url": "https://github.com/ionide/ionide-vscode-fsharp.git"
17601760
},
1761-
"version": "7.11.0"
1761+
"version": "7.12.0"
17621762
}

src/Components/TestExplorer.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ module DotnetCli =
486486
|> Promise.ofThenable
487487

488488
// NOTE: Have to wait or it'll continue before the debugger reaches the stop on entry point.
489-
// That'll leave the debugger in a confusing state where it shows it's attached but
489+
// That'll leave the debugger in a confusing state where it shows it's attached but
490490
// no breakpoints are hit and the breakpoints show as disabled
491491
do! Promise.sleep 2000
492492
Vscode.commands.executeCommand ("workbench.action.debug.continue") |> ignore
@@ -527,7 +527,7 @@ module DotnetCli =
527527

528528
let tryLaunchDebugger (consoleOutput: Node.Buffer.Buffer) =
529529
if not isDebuggerStarted then
530-
// NOTE: the processId we need to attach to is not the one we started for `dotnet test`.
530+
// NOTE: the processId we need to attach to is not the one we started for `dotnet test`.
531531
// Dotnet test will return the correct process id if (and only if) we are in debug mode
532532
match tryGetDebugProcessId (string consoleOutput) with
533533
| None -> ()

0 commit comments

Comments
 (0)