Skip to content

Commit 7d0e120

Browse files
chore: release multiple projects
1 parent 77e85bc commit 7d0e120

7 files changed

Lines changed: 53 additions & 9 deletions

File tree

src/Fable.Cli/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
last_commit_released: b471dc16fc3b5132af77b5974d1669c9b8220cca
2+
last_commit_released: 77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e
33
include:
44
- ../fable-library-beam/
55
- ../fable-library-dart/
@@ -25,6 +25,16 @@ All notable changes to this project will be documented in this file.
2525
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2626
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2727

28+
## 5.0.1 - 2026-04-26
29+
30+
### 🐞 Bug Fixes
31+
32+
* *(js/ts)* Fix JSX props with long string values causing compile error (fixes #3839) (#4545) ([d828a46](https://github.com/fable-compiler/Fable/commit/d828a461797e3f33bf4ab99b46030d16b29771e6))
33+
* *(js/ts)* Fix datetime custom format off by one year (#4558) ([83bdbb5](https://github.com/fable-compiler/Fable/commit/83bdbb5b34e70eae203831a3a442d477d15911e1))
34+
* *(python)* Fix regex lookbehind patterns being incorrectly converted (#4560) ([4ce5cd7](https://github.com/fable-compiler/Fable/commit/4ce5cd7b14a533aa3a08fe14c108ec30d662623f))
35+
36+
<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/b471dc16fc3b5132af77b5974d1669c9b8220cca..77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e)</small></strong>
37+
2838
## 5.0.0 - 2026-04-21
2939

3040
### Fixed

src/Fable.Compiler/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
last_commit_released: b471dc16fc3b5132af77b5974d1669c9b8220cca
2+
last_commit_released: 77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e
33
include:
44
- ../fable-library-beam/
55
- ../fable-library-dart/
@@ -21,6 +21,16 @@ All notable changes to this project will be documented in this file.
2121
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2222
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2323

24+
## 5.0.1 - 2026-04-26
25+
26+
### 🐞 Bug Fixes
27+
28+
* *(js/ts)* Fix JSX props with long string values causing compile error (fixes #3839) (#4545) ([d828a46](https://github.com/fable-compiler/Fable/commit/d828a461797e3f33bf4ab99b46030d16b29771e6))
29+
* *(js/ts)* Fix datetime custom format off by one year (#4558) ([83bdbb5](https://github.com/fable-compiler/Fable/commit/83bdbb5b34e70eae203831a3a442d477d15911e1))
30+
* *(python)* Fix regex lookbehind patterns being incorrectly converted (#4560) ([4ce5cd7](https://github.com/fable-compiler/Fable/commit/4ce5cd7b14a533aa3a08fe14c108ec30d662623f))
31+
32+
<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/b471dc16fc3b5132af77b5974d1669c9b8220cca..77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e)</small></strong>
33+
2434
## 5.0.0 - 2026-04-21
2535

2636
### Fixed

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"
5+
let VERSION = "5.0.1"
66

77
[<Literal>]
8-
let JS_LIBRARY_VERSION = "2.0.0"
8+
let JS_LIBRARY_VERSION = "2.0.1"
99

1010
type CompilerOptionsHelper =
1111
static member Make

src/fable-compiler-js/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
last_commit_released: b471dc16fc3b5132af77b5974d1669c9b8220cca
2+
last_commit_released: 77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e
33
include:
44
- ../Fable.Core/
55
- ../fable-standalone/
@@ -13,6 +13,14 @@ All notable changes to this project will be documented in this file.
1313
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1414
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1515

16+
## 2.0.1 - 2026-04-26
17+
18+
### 🐞 Bug Fixes
19+
20+
* *(js/ts)* Fix JSX props with long string values causing compile error (fixes #3839) (#4545) ([d828a46](https://github.com/fable-compiler/Fable/commit/d828a461797e3f33bf4ab99b46030d16b29771e6))
21+
22+
<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/b471dc16fc3b5132af77b5974d1669c9b8220cca..77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e)</small></strong>
23+
1624
## 2.0.0 - 2025-04-21
1725

1826
* Fable 5

src/fable-library-ts/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
last_commit_released: b471dc16fc3b5132af77b5974d1669c9b8220cca
2+
last_commit_released: 77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e
33
updaters:
44
- package.json:
55
file: package.json
@@ -15,6 +15,14 @@ All notable changes to this project will be documented in this file.
1515
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1616
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1717

18+
## 2.0.1 - 2026-04-26
19+
20+
### 🐞 Bug Fixes
21+
22+
* *(js/ts)* Fix datetime custom format off by one year (#4558) ([83bdbb5](https://github.com/fable-compiler/Fable/commit/83bdbb5b34e70eae203831a3a442d477d15911e1))
23+
24+
<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/b471dc16fc3b5132af77b5974d1669c9b8220cca..77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e)</small></strong>
25+
1826
## 2.0.0 - 2026-04-21
1927

2028
### Fixed

src/fable-library-ts/package.json

Lines changed: 2 additions & 2 deletions
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": "2.0.0",
6+
"version": "2.0.1",
77
"description": "Core library used by F# projects compiled with fable.io",
88
"author": "Fable Contributors",
99
"license": "MIT",
@@ -21,4 +21,4 @@
2121
"fsharp",
2222
"F#"
2323
]
24-
}
24+
}

src/fable-standalone/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
last_commit_released: b471dc16fc3b5132af77b5974d1669c9b8220cca
2+
last_commit_released: 77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e
33
include:
44
- ../Fable.Transforms/
55
- ../fcs-fable/
@@ -13,6 +13,14 @@ All notable changes to this project will be documented in this file.
1313
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1414
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1515

16+
## 2.0.1 - 2026-04-26
17+
18+
### 🐞 Bug Fixes
19+
20+
* *(js/ts)* Fix JSX props with long string values causing compile error (fixes #3839) (#4545) ([d828a46](https://github.com/fable-compiler/Fable/commit/d828a461797e3f33bf4ab99b46030d16b29771e6))
21+
22+
<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/b471dc16fc3b5132af77b5974d1669c9b8220cca..77e85bcde5f5b9eb6c0b8c84d6d5a4ecdfd7561e)</small></strong>
23+
1624
## 2.0.0 - 2026-04-21
1725

1826
* Fable 5.0.0

0 commit comments

Comments
 (0)