From 293a508c397a7d40c066a8734ce7d3f8122450ad Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Wed, 15 May 2024 20:20:47 -0500 Subject: [PATCH] changelog and brief description updates --- release/CHANGELOG.md | 7 ++++++- release/package.json | 10 +++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/release/CHANGELOG.md b/release/CHANGELOG.md index 1e24a46d..f4f95d5e 100644 --- a/release/CHANGELOG.md +++ b/release/CHANGELOG.md @@ -1,4 +1,9 @@ -### 7.19.0 - 25.04.2024 +### 7.20.0 - 15.05.2024 + +* ADDED: New flag to enable the F# Compiler's Transparent Compiler mode. Set `FSharp.fcs.transparentCompiler.enabled` to `true` to opt into the experimental analysis mode. This mode should be faster than the previous APIs, but may be unstable and may use more memory. As a result, it is still in an experimental mode and must be opted-in to. +* Update to FSAC 0.73.0. Check out the [release notes](https://github.com/ionide/FsAutoComplete/releases/tag/v0.73.0) for more details on that. This update brings more metrics, and a _ton_ of new codefixes around signature files and the F# 8 dot-lambda syntax. + +### 7.19.1 - 25.04.2024 * ADDED: [Add config entry for parens analyzer](https://github.com/ionide/ionide-vscode-fsharp/pull/1994) (Thanks! @brianrourkeboll!) * ADDED: [Adds arbitrary additional arguments to be passed to fsac](https://github.com/ionide/ionide-vscode-fsharp/pull/2004) (Thanks @TheAngryByrd!) * FIX: [Escape quotes in test filter expressions](https://github.com/ionide/ionide-vscode-fsharp/pull/1999) (Thanks @farlee2121!) diff --git a/release/package.json b/release/package.json index a007408e..aff76fb5 100644 --- a/release/package.json +++ b/release/package.json @@ -547,12 +547,12 @@ }, "FSharp.fcs.transparentCompiler.enabled": { "default": false, - "description": "EXPERIMENTAL: Enables the FSharp Compiler Service's [transparent compiler](https://github.com/dotnet/fsharp/pull/15179) feature. Requires restart.", + "markdownDescription": "EXPERIMENTAL: Enables the FSharp Compiler Service\u0027s [transparent compiler](https://github.com/dotnet/fsharp/pull/15179) feature. Requires restart.", "type": "boolean" }, "FSharp.fsac.attachDebugger": { "default": false, - "description": "Appends the \u0027--attachdebugger\u0027 argument to fsac, this will allow you to attach a debugger.", + "markdownDescription": "Appends the `--attachdebugger` argument to fsac, this will allow you to attach a debugger.", "type": "boolean" }, "FSharp.fsac.cachedTypeCheckCount": { @@ -576,7 +576,7 @@ }, "FSharp.fsac.fsacArgs": { "default": [], - "description": "additional CLI arguments to be provided to FSAC itself. Useful for flags that aren\u0027t exposed in the settings or CLI arguments that only exist in custom built versions of FSAC. Requires restart.", + "description": "additional CLI arguments to be provided to FSAC itself. Useful for flags that aren't exposed in the settings or CLI arguments that only exist in custom built versions of FSAC. Requires restart.", "items": { "type": "string" }, @@ -1808,5 +1808,5 @@ "type": "git", "url": "https://github.com/ionide/ionide-vscode-fsharp.git" }, - "version": "7.19.1" -} \ No newline at end of file + "version": "7.20.0" +}