Skip to content

Commit 1353066

Browse files
author
Maxime Mangel
committed
Release 4.12.1
1 parent 514dde8 commit 1353066

File tree

6 files changed

+14
-63
lines changed

6 files changed

+14
-63
lines changed

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 3 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,66 +4,13 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net6.0</TargetFramework>
7-
<Version>4.12.0</Version>
8-
<PackageReleaseNotes>## Added
9-
10-
11-
### All
12-
13-
- [GH-3733](https://github.com/fable-compiler/Fable/pull/3733) [GH-3727](https://github.com/fable-compiler/Fable/pull/3727) Add support for more `Result` API (by @zprobinson)
14-
* `Result.isOk`
15-
* `Result.isError`
16-
* `Result.Contains`
17-
* `Result.Count`
18-
* `Result.DefaultValue`
19-
* `Result.DefaultWith`
20-
* `Result.Exists`
21-
* `Result.Fold`
22-
* `Result.FoldBack`
23-
* `Result.ForAll`
24-
* `Result.Iterate`
25-
* `Result.ToArray`
26-
* `Result.ToList`
27-
* `Result.ToOption`
28-
- [GH-3721](https://github.com/fable-compiler/Fable/pull/3721) Add `--test:MSBuildCracker` flag allowing to use the experimental MSBuildCracker (by @nojaf)
29-
30-
### JavaScript
31-
32-
- [GH-3745](https://github.com/fable-compiler/Fable/pull/3745) Add support for `ListCollector` (by @nojaf)
33-
* `instance.Add`
34-
* `instance.AddMany`
35-
* `instance.AddManyAndClose`
36-
* `instance.Close`
37-
38-
## Changed
39-
40-
41-
### JavaScript
42-
43-
- [GH-3749](https://github.com/fable-compiler/Fable/pull/3749) Rename `fable-library` to `fable-library-js` (by @MangelMaxime)
44-
45-
## Removed
7+
<Version>4.12.1</Version>
8+
<PackageReleaseNotes>## Fixed
469

4710

4811
### JavaScript
4912

50-
- Remove `Choice.d.ts` from source code of `fable-library` (by @MangelMaxime)
51-
52-
### TypeScript
53-
54-
- Remove `Choice.d.ts` from source code of `fable-library` (by @MangelMaxime)
55-
56-
## Fixed
57-
58-
59-
### Python
60-
61-
- [GH-3717](https://github.com/fable-compiler/Fable/issues/3717) Nested type with Custom Equality gives false negative equality (by @dbrattli)
62-
- Generate assert statements for `assert` expressions in debug mode (by @dbrattli)
63-
64-
### All
65-
66-
- [GH-3744](https://github.com/fable-compiler/Fable/pull/3744) Fix behaviour when passing `--verbose` to be consistent with behaviour before changing the logging library (by @nojaf)
13+
- Embed `fable-library-js` in Fable DLL (by @MangelMaxime)
6714

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

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System
44

55
module Literals =
66
[<Literal>]
7-
let VERSION = "4.12.0"
7+
let VERSION = "4.12.1"
88

99
[<Literal>]
10-
let JS_LIBRARY_VERSION = "1.0.0-beta-001"
10+
let JS_LIBRARY_VERSION = "1.0.0"
1111

1212
type CompilerOptionsHelper =
1313
static member Make

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-library-ts/CHANGELOG.md

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

88
## Unreleased
99

10+
## 1.0.0 - 2024-02-13
11+
12+
* Release stable version
13+
1014
## 1.0.0-beta-001 - 2024-02-12
1115

1216
### Changed

src/fable-library-ts/package.json

Lines changed: 1 addition & 1 deletion
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": "1.0.0-beta-001",
6+
"version": "1.0.0",
77
"description": "Core library used by F# projects compiled with fable.io",
88
"author": "Fable Contributors",
99
"license": "MIT",

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)