Skip to content

Commit

Permalink
Release 5.0.0-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Jan 9, 2025
1 parent 7c93b15 commit 58d32ae
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 16 deletions.
3 changes: 2 additions & 1 deletion src/Fable.Build/GithubRelease.fs
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,5 @@ let handle (args: string list) =

createReleaseCommitAndPush versionInfo

createGithubRelease githubToken versionInfo
// Disable Github release for now, because it's not working
// createGithubRelease githubToken versionInfo
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.5 - 2025-01-09

### Added

* [JS/TS/Python] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @MangelMaxime)
Expand Down
15 changes: 9 additions & 6 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>5.0.0-alpha.4</Version>
<PackageReleaseNotes>## Fixed
<Version>5.0.0-alpha.5</Version>
<PackageReleaseNotes>## Added

- [TS] Make discriminated union `.Is*` properties works (@MangelMaxime)
- [JS/TS/Python] Fix `h` in `DateTime.ToString` (@MangelMaxime)
- [JS/TS] Fix `hh` in `DateTime.ToString` (@MangelMaxime)
- [JS/TS] Don't generate the setter code if a property is decorated with `[&lt;Erase&gt;]` (@MangelMaxime)
- [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)

## 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)

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

## Unreleased

## 5.0.0-alpha.5 - 2025-01-09

### 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)

### Fixed

Expand Down
14 changes: 8 additions & 6 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>5.0.0-alpha.4</Version>
<PackageReleaseNotes>## Fixed
<Version>5.0.0-alpha.5</Version>
<PackageReleaseNotes>## Added

- [TS] Make discriminated union `.Is*` properties works (@MangelMaxime)
- [JS/TS/Python] Fix `h` in `DateTime.ToString` (@MangelMaxime)
- [JS/TS] Fix `hh` in `DateTime.ToString` (@MangelMaxime)
- [JS/TS] Don't generate the setter code if a property is decorated with `[&lt;Erase&gt;]` (@MangelMaxime)
- [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)

## Fixed

- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (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.4"
let VERSION = "5.0.0-alpha.5"

[<Literal>]
let JS_LIBRARY_VERSION = "1.8.0"
let JS_LIBRARY_VERSION = "1.9.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.9.0 - 2025-01-09

### Added

* [JS/TS] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
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.8.0",
"version": "1.9.0",
"description": "Core library used by F# projects compiled with fable.io",
"author": "Fable Contributors",
"license": "MIT",
Expand Down

0 comments on commit 58d32ae

Please sign in to comment.