diff --git a/build/Program.fs b/build/Program.fs index 2d81ac30..1e7206cc 100644 --- a/build/Program.fs +++ b/build/Program.fs @@ -309,7 +309,7 @@ let initTargets () = Target.create "CopyFSACNetcore" (fun _ -> - let tfms = [ "net6.0"; "net7.0" ] + let tfms = [ "net6.0"; "net7.0"; "net8.0" ] for tfm in tfms do let fsacBinNetcore = $"packages/fsac/fsautocomplete/tools/{tfm}/any" diff --git a/release/CHANGELOG.md b/release/CHANGELOG.md index f4f95d5e..0ab9c54e 100644 --- a/release/CHANGELOG.md +++ b/release/CHANGELOG.md @@ -1,3 +1,7 @@ +### 7.20.1 - 17.05.2024 + +* Fixed: The .NET 8 build of FsAutoComplete wasn't being included in the build. Now it is! + ### 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.