Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
last_commit_released: 2fc9c1415a9abcf729d920ca6c99732b3c894993
last_commit_released: 2ba95113b002c641a3b141667af90cc05fec44f6
include:
- ../fable-library-beam/
- ../fable-library-dart/
Expand All @@ -25,6 +25,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 5.12.0 - 2026-07-19

### πŸš€ Features

* *(beam)* Render %A in F# syntax instead of dumping Erlang terms (#4814) ([218e0c40](https://github.com/fable-compiler/Fable/commit/218e0c40aee0283bb8c9c74ab36ee0f912b50c51))

### 🐞 Bug Fixes

* *(beam)* Correct char-to-string conversion and console Unicode encoding (#4812) ([df8e01d6](https://github.com/fable-compiler/Fable/commit/df8e01d65a9aa1e4cdf853e3b209eb07c1d979c4))
* *(beam)* Isolate each top-level effect's variables in main/0 (#4815) ([8d708633](https://github.com/fable-compiler/Fable/commit/8d708633e0c0e48d227bf653e2cbf91e203bd539))
* *(beam)* Write package modules to the package's own src/ (#4817) ([06bf863c](https://github.com/fable-compiler/Fable/commit/06bf863ce6a0134656e5de7ed32d33671206c795))
* *(beam)* Implement Async.AwaitTask (#4819) ([17cc3b6a](https://github.com/fable-compiler/Fable/commit/17cc3b6a1bc5935ea29835ae47a40667d5fc15ff))
* *(beam)* Keep the original stacktrace when an async error is re-raised (#4818) ([d7afa278](https://github.com/fable-compiler/Fable/commit/d7afa278e07b731c198ca5c53e2be1e4a860e984))

<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/2fc9c1415a9abcf729d920ca6c99732b3c894993..2ba95113b002c641a3b141667af90cc05fec44f6)</small></strong>

## 5.11.0 - 2026-07-17

### πŸš€ Features
Expand Down
17 changes: 16 additions & 1 deletion src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
last_commit_released: 2fc9c1415a9abcf729d920ca6c99732b3c894993
last_commit_released: 2ba95113b002c641a3b141667af90cc05fec44f6
include:
- ../fable-library-beam/
- ../fable-library-dart/
Expand All @@ -21,6 +21,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 5.12.0 - 2026-07-19

### πŸš€ Features

* *(beam)* Render %A in F# syntax instead of dumping Erlang terms (#4814) ([218e0c40](https://github.com/fable-compiler/Fable/commit/218e0c40aee0283bb8c9c74ab36ee0f912b50c51))

### 🐞 Bug Fixes

* *(beam)* Correct char-to-string conversion and console Unicode encoding (#4812) ([df8e01d6](https://github.com/fable-compiler/Fable/commit/df8e01d65a9aa1e4cdf853e3b209eb07c1d979c4))
* *(beam)* Isolate each top-level effect's variables in main/0 (#4815) ([8d708633](https://github.com/fable-compiler/Fable/commit/8d708633e0c0e48d227bf653e2cbf91e203bd539))
* *(beam)* Implement Async.AwaitTask (#4819) ([17cc3b6a](https://github.com/fable-compiler/Fable/commit/17cc3b6a1bc5935ea29835ae47a40667d5fc15ff))
* *(beam)* Keep the original stacktrace when an async error is re-raised (#4818) ([d7afa278](https://github.com/fable-compiler/Fable/commit/d7afa278e07b731c198ca5c53e2be1e4a860e984))

<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/2fc9c1415a9abcf729d920ca6c99732b3c894993..2ba95113b002c641a3b141667af90cc05fec44f6)</small></strong>

## 5.11.0 - 2026-07-17

### πŸš€ Features
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Fable

module Literals =
[<Literal>]
let VERSION = "5.11.0"
let VERSION = "5.12.0"

[<Literal>]
let JS_LIBRARY_VERSION = "2.5.0"
Expand Down
15 changes: 14 additions & 1 deletion src/fable-compiler-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
last_commit_released: 2fc9c1415a9abcf729d920ca6c99732b3c894993
last_commit_released: 2ba95113b002c641a3b141667af90cc05fec44f6
include:
- ../Fable.Core/
- ../fable-standalone/
Expand All @@ -16,6 +16,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.10.0 - 2026-07-19

### πŸš€ Features

* *(beam)* Render %A in F# syntax instead of dumping Erlang terms (#4814) ([218e0c40](https://github.com/fable-compiler/Fable/commit/218e0c40aee0283bb8c9c74ab36ee0f912b50c51))

### 🐞 Bug Fixes

* *(beam)* Correct char-to-string conversion and console Unicode encoding (#4812) ([df8e01d6](https://github.com/fable-compiler/Fable/commit/df8e01d65a9aa1e4cdf853e3b209eb07c1d979c4))
* *(beam)* Isolate each top-level effect's variables in main/0 (#4815) ([8d708633](https://github.com/fable-compiler/Fable/commit/8d708633e0c0e48d227bf653e2cbf91e203bd539))

<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/2fc9c1415a9abcf729d920ca6c99732b3c894993..2ba95113b002c641a3b141667af90cc05fec44f6)</small></strong>

## 2.9.0 - 2026-07-17

### πŸš€ Features
Expand Down
4 changes: 2 additions & 2 deletions src/fable-compiler-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "module",
"name": "@fable-org/fable-compiler-js",
"private": false,
"version": "2.9.0",
"version": "2.10.0",
"main": "index.js",
"bin": {
"fable": "index.js"
Expand All @@ -25,7 +25,7 @@
"homepage": "https://github.com/fable-compiler/Fable#readme",
"dependencies": {
"@fable-org/fable-metadata": "^2.1.0",
"@fable-org/fable-standalone": "^2.9.0"
"@fable-org/fable-standalone": "^2.10.0"
},
"devDependencies": {
"esbuild": "^0.28.1",
Expand Down
15 changes: 14 additions & 1 deletion src/fable-standalone/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
last_commit_released: 2fc9c1415a9abcf729d920ca6c99732b3c894993
last_commit_released: 2ba95113b002c641a3b141667af90cc05fec44f6
include:
- ../Fable.Transforms/
- ../fcs-fable/
Expand All @@ -19,6 +19,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.10.0 - 2026-07-19

### πŸš€ Features

* *(beam)* Render %A in F# syntax instead of dumping Erlang terms (#4814) ([218e0c40](https://github.com/fable-compiler/Fable/commit/218e0c40aee0283bb8c9c74ab36ee0f912b50c51))

### 🐞 Bug Fixes

* *(beam)* Correct char-to-string conversion and console Unicode encoding (#4812) ([df8e01d6](https://github.com/fable-compiler/Fable/commit/df8e01d65a9aa1e4cdf853e3b209eb07c1d979c4))
* *(beam)* Isolate each top-level effect's variables in main/0 (#4815) ([8d708633](https://github.com/fable-compiler/Fable/commit/8d708633e0c0e48d227bf653e2cbf91e203bd539))

<strong><small>[View changes on Github](https://github.com/fable-compiler/Fable/compare/2fc9c1415a9abcf729d920ca6c99732b3c894993..2ba95113b002c641a3b141667af90cc05fec44f6)</small></strong>

## 2.9.0 - 2026-07-17

### πŸš€ Features
Expand Down
2 changes: 1 addition & 1 deletion src/fable-standalone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "module",
"name": "@fable-org/fable-standalone",
"private": false,
"version": "2.9.0",
"version": "2.10.0",
"main": "./dist/bundle.min.js",
"description": "Fable compiler",
"keywords": [
Expand Down