Skip to content

Commit

Permalink
Release 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mangel committed Sep 29, 2023
1 parent 1d99708 commit cfec8cd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/Utils/Nuget.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `[<NamedParams>]` without arguments provided should take an empty object
* Fix #3494: Calling an attached parametrized getter fails in transpiled javascript
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.2.0</Version>
<Version>4.2.1</Version>
<PackageReleaseNotes>* Fix #3438: Source maps
* Fix #3440: Don't curry arity-1 functions
* Fix #3452: DateTimeOffset conversion to DateTime
Expand Down Expand Up @@ -33,7 +33,7 @@
<Description>F# to JS compiler</Description>
<OtherFlags>$(OtherFlags) --nowarn:3536</OtherFlags>
</PropertyGroup>
<ItemGroup Condition="'$(Pack)' == 'true'">
<ItemGroup>
<Content Include="..\..\temp\fable-library\**\*.*" PackagePath="fable-library\" />
<Content Include="..\..\temp\fable-library-ts\**\*.*" PackagePath="fable-library-ts\" />
<Content Include="..\..\temp\fable-library-py\**\*.*" PackagePath="fable-library-py\" />
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Fable

module Literals =
let [<Literal>] VERSION = "4.2.0"
let [<Literal>] VERSION = "4.2.1"
let [<Literal>] JS_LIBRARY_VERSION = "1.1.1"

type CompilerOptionsHelper =
Expand Down

0 comments on commit cfec8cd

Please sign in to comment.