Skip to content

Commit e2285d6

Browse files
author
Maxime Mangel
committed
Release 4.19.0
1 parent c13d8ad commit e2285d6

File tree

9 files changed

+24
-17
lines changed

9 files changed

+24
-17
lines changed

src/Fable.Cli/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 4.19.0 - 2024-06-10
11+
1012
### Fixed
1113

1214
* [TS] Fixed interface indexers (#3830) (by @ncave)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,11 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net6.0</TargetFramework>
7-
<Version>4.18.0</Version>
7+
<Version>4.19.0</Version>
88
<PackageReleaseNotes>## Fixed
99

10-
- [GH-3817](https://github.com/fable-compiler/Fable/pull/3817) [All] Fix broken --precompiledLib switch (#3818) (by @DunetsNM)
11-
- [JS/TS] Fixed TimeSpan.FromMilliseconds (#3815) (by @ncave)
12-
- [Python] Fixed quotation for union string cases (by @dbrattli)
13-
- [Python] Fixed casing issues with identifiers and reflection info (#3811) (by @dbrattli)
14-
- [JS/TS/Python] Fixed interface static members (#3566) (by @ncave)
10+
- [TS] Fixed interface indexers (#3830) (by @ncave)
11+
- [GH-3835](https://github.com/fable-compiler/Fable/pull/3835) [All] Use case insensitive comparison when searching for dependencies between fable packages (by @ThisFunctionalTom)
1512

1613
</PackageReleaseNotes>
1714
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->

src/Fable.Compiler/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 4.0.0-alpha-010 - 2024-05-24
11+
12+
### Fixed
13+
14+
* [GH-3835](https://github.com/fable-compiler/Fable/pull/3835) [All] Use case insensitive comparison when searching for dependencies between fable packages (by @ThisFunctionalTom)
15+
1016
## 4.0.0-alpha-009 - 2024-05-24
1117

1218
### Changed

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>4.0.0-alpha-009</Version>
10-
<PackageReleaseNotes>## Changed
9+
<Version>4.0.0-alpha-010</Version>
10+
<PackageReleaseNotes>## Fixed
1111

12-
- Fable 4.18.0
12+
- [GH-3835](https://github.com/fable-compiler/Fable/pull/3835) [All] Use case insensitive comparison when searching for dependencies between fable packages (by @ThisFunctionalTom)
1313

1414
</PackageReleaseNotes>
1515
<DebugType>embedded</DebugType>

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "4.18.0"
5+
let VERSION = "4.19.0"
66

77
[<Literal>]
88
let JS_LIBRARY_VERSION = "1.4.0"

src/fable-compiler-js/CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10-
### Fixed
11-
12-
* [GH-3835](https://github.com/fable-compiler/Fable/pull/3835) [All] Use case insensitive comparison when searching for dependencies between fable packages (by @ThisFunctionalTom)
13-
1410
## 1.2.2 - 2024-05-24
1511

1612
### Fixed

src/fable-compiler-js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/fable-standalone/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 1.7.0
11+
12+
### Changed
13+
14+
* Fable 4.19.0
15+
1016
## 1.6.0 - 2024-05-23
1117

1218
### Fixed

src/fable-standalone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"name": "@fable-org/fable-standalone",
44
"private": false,
5-
"version": "1.6.0",
5+
"version": "1.7.0",
66
"main": "./dist/bundle.min.js",
77
"description": "Fable compiler",
88
"keywords": [

0 commit comments

Comments
 (0)