Skip to content

Commit 98bf828

Browse files
author
Maxime Mangel
committed
Release 4.13.0
1 parent 0169f48 commit 98bf828

File tree

5 files changed

+46
-8
lines changed

5 files changed

+46
-8
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+
## 4.13.0 - 2024-02-13
11+
1012
### Added
1113

1214
#### JavaScript

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 39 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,46 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net6.0</TargetFramework>
7-
<Version>4.12.2</Version>
8-
<PackageReleaseNotes>## Changed
7+
<Version>4.13.0</Version>
8+
<PackageReleaseNotes>## Added
99

10-
- Update to Fable.AST 4.4.0
10+
11+
### JavaScript
12+
13+
- [GH-3759](https://github.com/fable-compiler/Fable/issues/3759) Add `StringBuilder.Chars` (by @MangelMaxime)
14+
- Added range overload for `String.ToCharArray` (by @ncave)
15+
16+
### Rust
17+
18+
- [GH-3761](https://github.com/fable-compiler/Fable/pull/3761) Added `StringBuilder.Chars`, `StringBuilder.Remove` and tests. (by @ncave)
19+
20+
### Dart
21+
22+
- [GH-3761](https://github.com/fable-compiler/Fable/pull/3761) Added `StringBuilder` support and tests. (by @ncave)
23+
24+
## Changed
25+
26+
27+
### JavaScript
28+
29+
- [GH-3761](https://github.com/fable-compiler/Fable/pull/3761) Updated `StringBuilder` to remove allocations where possible. (by @ncave)
30+
31+
### Python
32+
33+
- [GH-3761](https://github.com/fable-compiler/Fable/pull/3761) Updated `StringBuilder` to remove allocations where possible. (by @ncave)
34+
35+
## Fixed
36+
37+
38+
### JavaScript
39+
40+
- [GH-3748](https://github.com/fable-compiler/Fable/pull/3748) Accessing an array out of bounds should emit an exception (by @MangelMaxime)
41+
- [GH-3748](https://github.com/fable-compiler/Fable/pull/3748) Setting an array out of bounds should emit an exception (by @MangelMaxime)
42+
- [GH-3761](https://github.com/fable-compiler/Fable/pull/3761) Fixed incorrect `StringBuilder.Remove` implementation. (by @ncave)
43+
44+
### Python
45+
46+
- [GH-3761](https://github.com/fable-compiler/Fable/pull/3761) Fixed incorrect `StringBuilder.Remove` implementation. (by @ncave)
1147

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

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "4.12.2"
5+
let VERSION = "4.13.0"
66

77
[<Literal>]
88
let JS_LIBRARY_VERSION = "1.1.0"

src/fable-compiler-js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/fable-standalone/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)