From cfec8cd5869d98428dd662992306c6262d677cbd Mon Sep 17 00:00:00 2001 From: Maxime Mangel Date: Fri, 29 Sep 2023 11:45:38 +0200 Subject: [PATCH] Release 4.2.1 --- build/Utils/Nuget.fs | 2 +- src/Fable.Cli/CHANGELOG.md | 6 +++++- src/Fable.Cli/Fable.Cli.fsproj | 4 ++-- src/Fable.Transforms/Global/Compiler.fs | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/build/Utils/Nuget.fs b/build/Utils/Nuget.fs index c630fe91a6..d19ee51c7f 100644 --- a/build/Utils/Nuget.fs +++ b/build/Utils/Nuget.fs @@ -23,7 +23,7 @@ module Dotnet = |> Async.AwaitTask |> Async.RunSynchronously - let m = Regex.Match(standardOutput, "'(?'nupkgPath'.*\.nupkg)'") + let m = Regex.Match(standardOutput, "Successfully created package '(?'nupkgPath'.*\.nupkg)'") if m.Success then m.Groups.["nupkgPath"].Value diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md index 02d29f6fe4..bf7cca758f 100644 --- a/src/Fable.Cli/CHANGELOG.md +++ b/src/Fable.Cli/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -## 4.2.0 +## 4.2.1 - 2023-09-29 + +* Fix package to include Fable libraries folders + +## 4.2.0 - 2023-09-29 * Fix #3480: Function decorated with `[]` without arguments provided should take an empty object * Fix #3494: Calling an attached parametrized getter fails in transpiled javascript diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 9201838eff..9e23a5a4fe 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,7 +4,7 @@ true Exe net6.0 - 4.2.0 + 4.2.1 * Fix #3438: Source maps * Fix #3440: Don't curry arity-1 functions * Fix #3452: DateTimeOffset conversion to DateTime @@ -33,7 +33,7 @@ F# to JS compiler $(OtherFlags) --nowarn:3536 - + diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 0ecd03e3b0..4cb2d0db4e 100644 --- a/src/Fable.Transforms/Global/Compiler.fs +++ b/src/Fable.Transforms/Global/Compiler.fs @@ -1,7 +1,7 @@ namespace Fable module Literals = - let [] VERSION = "4.2.0" + let [] VERSION = "4.2.1" let [] JS_LIBRARY_VERSION = "1.1.1" type CompilerOptionsHelper =