Skip to content

Commit

Permalink
Release 5.0.0-alpha.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Jan 23, 2025
1 parent 0f9e045 commit d4541ba
Show file tree
Hide file tree
Showing 7 changed files with 28 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

## 5.0.0-alpha.6 - 2025-01-23

### Added

* [All] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)
Expand Down
14 changes: 9 additions & 5 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>5.0.0-alpha.5</Version>
<Version>5.0.0-alpha.6</Version>
<PackageReleaseNotes>## Added

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

## Fixed

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

</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

## 5.0.0-alpha.6 - 2025-01-23

### Added

* [All] Add `StringBuiler.Append(c: char, repeatCount: int)` overload (by @roboz0r)
Expand Down
13 changes: 9 additions & 4 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>5.0.0-alpha.5</Version>
<Version>5.0.0-alpha.6</Version>
<PackageReleaseNotes>## Added

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

## Fixed

- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
- [Py] Add missing unicode categories in python library (by @joprice)
- [All] Log JSON output if we fail to parse MSBuild result (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 = "5.0.0-alpha.5"
let VERSION = "5.0.0-alpha.6"

[<Literal>]
let JS_LIBRARY_VERSION = "1.9.0"
let JS_LIBRARY_VERSION = "1.10.0"

type CompilerOptionsHelper =
static member Make
Expand Down
4 changes: 3 additions & 1 deletion 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.10.0 - 2025-01-23

### Added

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

### Added

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

### Fixed

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.9.0",
"version": "1.10.0",
"description": "Core library used by F# projects compiled with fable.io",
"author": "Fable Contributors",
"license": "MIT",
Expand Down

0 comments on commit d4541ba

Please sign in to comment.