Skip to content

Commit d4541ba

Browse files
committed
Release 5.0.0-alpha.6
1 parent 0f9e045 commit d4541ba

File tree

7 files changed

+28
-13
lines changed

7 files changed

+28
-13
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+
## 5.0.0-alpha.6 - 2025-01-23
11+
1012
### Added
1113

1214
* [All] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,20 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net8.0</TargetFramework>
7-
<Version>5.0.0-alpha.5</Version>
7+
<Version>5.0.0-alpha.6</Version>
88
<PackageReleaseNotes>## Added
99

10-
- [JS/TS/Python] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @MangelMaxime)
11-
- [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
10+
- [All] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)
11+
- [All] Added primitive types equality and comparison (by @ncave)
12+
- [All] Updated FCS to latest F# 9.0 (by @ncave)
13+
- [All] Updated Fable-FCS to latest F# 9.0 (by @ncave)
14+
- [All] Updated metadata to latest .NET 9.0 (by @ncave)
15+
- [All] Updated FCS type constraints (by @ncave)
1216

1317
## Fixed
1418

15-
- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
16-
- [All] Don't fails silently if an unknown argument is provided, instead log the error and print the help message (by @MangelMaxime)
19+
- [Py] Add missing unicode categories in python library (by @joprice)
20+
- [All] Log JSON output if we fail to parse MSBuild result (by @MangelMaxime)
1721

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

src/Fable.Compiler/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+
## 5.0.0-alpha.6 - 2025-01-23
11+
1012
### Added
1113

1214
* [All] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,20 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>5.0.0-alpha.5</Version>
9+
<Version>5.0.0-alpha.6</Version>
1010
<PackageReleaseNotes>## Added
1111

12-
- [JS/TS/Python] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
13-
- [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
12+
- [All] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)
13+
- [All] Added primitive types equality and comparison (by @ncave)
14+
- [All] Updated FCS to latest F# 9.0 (by @ncave)
15+
- [All] Updated Fable-FCS to latest F# 9.0 (by @ncave)
16+
- [All] Updated metadata to latest .NET 9.0 (by @ncave)
17+
- [All] Updated FCS type constraints (by @ncave)
1418

1519
## Fixed
1620

17-
- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
21+
- [Py] Add missing unicode categories in python library (by @joprice)
22+
- [All] Log JSON output if we fail to parse MSBuild result (by @MangelMaxime)
1823

1924
</PackageReleaseNotes>
2025
<DebugType>embedded</DebugType>

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "5.0.0-alpha.5"
5+
let VERSION = "5.0.0-alpha.6"
66

77
[<Literal>]
8-
let JS_LIBRARY_VERSION = "1.9.0"
8+
let JS_LIBRARY_VERSION = "1.10.0"
99

1010
type CompilerOptionsHelper =
1111
static member Make

src/fable-library-ts/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
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+
## 1.10.0 - 2025-01-23
11+
1012
### Added
1113

1214
* [JS/TS] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)
@@ -15,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517

1618
### Added
1719

18-
* [JS/TS] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
20+
* [JS/TS] Add new `TimSpane` overload support coming from .NET 9 (by @MangelMaxime)
1921

2022
### Fixed
2123

src/fable-library-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": false,
44
"type": "module",
55
"name": "@fable-org/fable-library-ts",
6-
"version": "1.9.0",
6+
"version": "1.10.0",
77
"description": "Core library used by F# projects compiled with fable.io",
88
"author": "Fable Contributors",
99
"license": "MIT",

0 commit comments

Comments
 (0)