Skip to content

Commit

Permalink
Release 4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Apr 28, 2023
1 parent 1393979 commit 38c3c8c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
10 changes: 7 additions & 3 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.1.2</Version>
<PackageVersion>4.1.2</PackageVersion>
<PackageReleaseNotes>* Print minimum fable-library version from npm</PackageReleaseNotes>
<Version>4.1.3</Version>
<PackageVersion>4.1.3</PackageVersion>
<PackageReleaseNotes>* JS/TS/Rust: Added bigint log, log2, log10, minMag, maxMag
* TS: Fix extension of files in fable_modules with out dir
* TS: Support annotations of StringEnum and TypeScriptTaggedUnion types
* JS/TS: Output JS docs
* Fix range of inlined functions</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
8 changes: 8 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 4.1.3

* JS/TS/Rust: Added bigint log, log2, log10, minMag, maxMag
* TS: Fix extension of files in fable_modules with out dir
* TS: Support annotations of StringEnum and TypeScriptTaggedUnion types
* JS/TS: Output JS docs
* Fix range of inlined functions

### 4.1.2

* Print minimum fable-library version from npm
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace Fable

module Literals =
let [<Literal>] VERSION = "4.1.2"
let [<Literal>] JS_LIBRARY_VERSION = "1.0.0"
let [<Literal>] VERSION = "4.1.3"
let [<Literal>] JS_LIBRARY_VERSION = "1.1.0"

type CompilerOptionsHelper =
static member Make(?language,
Expand Down
2 changes: 1 addition & 1 deletion src/fable-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sideEffects": false,
"type": "module",
"name": "fable-library",
"version": "1.0.0",
"version": "1.1.0",
"description": "Core library used by F# projects compiled with fable.io",
"author": "Fable Contributors",
"license": "MIT",
Expand Down

0 comments on commit 38c3c8c

Please sign in to comment.