Skip to content

Commit

Permalink
Release 4.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Sep 19, 2024
1 parent b93f248 commit 6089f30
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 13 deletions.
2 changes: 2 additions & 0 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 4.21.0 - 2024-09-19

### Added

* [JS/TS] Add support for `OrdinalIgnoreCase` overload for `String.EndsWith` (#3892) (by @goswinr)
Expand Down
16 changes: 11 additions & 5 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,22 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.20.0</Version>
<Version>4.21.0</Version>
<PackageReleaseNotes>## Added

- [Rust] Added support for static interface calls (by @ncave)
- [JS/TS] Add support for `OrdinalIgnoreCase` overload for `String.EndsWith` (#3892) (by @goswinr)
- [JS/TS] Add `uri.Port`, `uri.IsDefaultPort` (by @MangelMaxime)

## Changed

- [Python] Remove `$` sign when reporting an error from `assert_equal` and `assert_not_equal` (#3878) (by @joprice)
- [All] Don't hide original error when failing to scan an assembly for plugin (#3896) (by @MangelMaxime)

## Fixed

- [All] Fixed passing delegates with unit args (#3862) (by @ncave)
- [JS/TS] Fixed Decimal comparisons (#3884) (by @ncave)
- [Rust] Fixed return type for byref body (by @ncave)
- [JS/TS] Fix escaping of `{` and `}` in FormattableString (#3890) (by @roboz0r)
- [JS/TS] Fix `uri.Host` to return the host name without the port (by @MangelMaxime)
- [JS/TS] Fix TypeScript compilation by resolving type of `jsOptions` (#3894) (by @ManngelMaxime)

</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Expand Down
2 changes: 2 additions & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 4.0.0-alpha-013 - 2024-09-19

### Changed

* [All] Don't hide original error when failing to scan an assembly for plugin (#3896) (by @MangelMaxime)
Expand Down
6 changes: 3 additions & 3 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>4.0.0-alpha-012</Version>
<PackageReleaseNotes>## Fixed
<Version>4.0.0-alpha-013</Version>
<PackageReleaseNotes>## Changed

- [JS/TS] Fixed unwrapping optional arguments (#3847) (by @ncave)
- [All] Don't hide original error when failing to scan an assembly for plugin (#3896) (by @MangelMaxime)

</PackageReleaseNotes>
<DebugType>embedded</DebugType>
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ namespace Fable

module Literals =
[<Literal>]
let VERSION = "4.20.0"
let VERSION = "4.21.0"

[<Literal>]
let JS_LIBRARY_VERSION = "1.4.3"
let JS_LIBRARY_VERSION = "1.5.0"

type CompilerOptionsHelper =
static member Make
Expand Down
2 changes: 2 additions & 0 deletions src/fable-library-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 1.5.0 - 2024-09-19

### Added

* [JS/TS] Add support for `OrdinalIgnoreCase` overload for `String.EndsWith` (#3892) (by @goswinr)
Expand Down
2 changes: 1 addition & 1 deletion src/fable-library-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": false,
"type": "module",
"name": "@fable-org/fable-library-ts",
"version": "1.4.3",
"version": "1.5.0",
"description": "Core library used by F# projects compiled with fable.io",
"author": "Fable Contributors",
"license": "MIT",
Expand Down
4 changes: 4 additions & 0 deletions src/fable-standalone/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 1.9.0 - 2024-09-19

* Fable 4.21.0

## 1.9.0 - 2024-09-04

* Fable 4.20.0
Expand Down
4 changes: 2 additions & 2 deletions src/fable-standalone/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6089f30

Please sign in to comment.