Skip to content

Commit 8b48542

Browse files
author
Maxime Mangel
committed
Release 4.17.0
1 parent e8c35aa commit 8b48542

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
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.17.0 - 2024-04-23
11+
1012
### Added
1113

1214
* [Rust] Added support for XmlDoc comments (by @ncave)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,23 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net6.0</TargetFramework>
7-
<Version>4.16.0</Version>
7+
<Version>4.17.0</Version>
88
<PackageReleaseNotes>## Added
99

10-
- [JS/TS] Add `ConditionalWeakTable` (by @chkn)
10+
- [Rust] Added support for XmlDoc comments (by @ncave)
11+
- [Rust] Support captures in object expressions (by @ncave)
12+
- [Rust] Added type extensions support (by @ncave)
13+
- [Rust] Added Char implementation module (by @ncave)
14+
15+
## Fixed
16+
17+
- [Python] Fixes for custom hash values (#3796) (by @dbrattli)
18+
- [Python] Fix for import of camelCased class (#3808) (by @dbrattli)
19+
- [JS/TS] Fixed optional args for reflection (by @ncave)
20+
- [JS/TS] Fixed type visibility when parent is namespace (by @ncave)
21+
- [JS/TS] Fixed DateTimeOffset.ToString with custom format (by @ncave)
22+
- [Rust] Fixed property get on constrained generic types (by @ncave)
23+
- [Rust] Fixed module member imports (by @ncave)
1124

1225
</PackageReleaseNotes>
1326
<!-- 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.16.0"
5+
let VERSION = "4.17.0"
66

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

src/fable-standalone/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 1.5.0 - 2024-03-20
11+
12+
### Changed
13+
14+
* Fable 4.17.0
15+
1016
## 1.4.0 - 2024-03-20
1117

1218
### Changed

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.

src/fable-standalone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"name": "@fable-org/fable-standalone",
44
"private": false,
5-
"version": "1.4.0",
5+
"version": "1.5.0",
66
"main": "./dist/bundle.min.js",
77
"description": "Fable compiler",
88
"keywords": [

0 commit comments

Comments
 (0)