Skip to content

Commit 0624836

Browse files
Release 3.7.10
1 parent 64caf28 commit 0624836

5 files changed

Lines changed: 21 additions & 7 deletions

File tree

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net5.0</TargetFramework>
7-
<Version>3.7.9</Version>
8-
<PackageVersion>3.7.9</PackageVersion>
9-
<PackageReleaseNotes>* Fix #2851: References captured by >> eagerly eval
10-
* Fix wrong out paths when using lower case drive letter</PackageReleaseNotes>
7+
<Version>3.7.10</Version>
8+
<PackageVersion>3.7.10</PackageVersion>
9+
<PackageReleaseNotes>* Fix #2864: Interface names don't conflict in JS
10+
* Fix #2855: duplicate idents from witness in inline expr
11+
* Fix #2868: don't write empty files
12+
* Add warning when duplicated generic params are detected</PackageReleaseNotes>
1113
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
1214
<RollForward>Major</RollForward>
1315
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

src/Fable.Cli/RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 3.7.10
2+
3+
* Fix #2864: Interface names don't conflict in JS
4+
* Fix #2855: duplicate idents from witness in inline expr
5+
* Fix #2868: don't write empty files
6+
* Add warning when duplicated generic params are detected
7+
18
### 3.7.9
29

310
* Fix #2851: References captured by >> eagerly eval

src/Fable.Core/Fable.Core.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Description>Fable Core Library</Description>
66
<TargetFramework>netstandard2.0</TargetFramework>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
8-
<Version>3.6.2</Version>
9-
<PackageVersion>3.6.2</PackageVersion>
8+
<Version>3.7.0</Version>
9+
<PackageVersion>3.7.0</PackageVersion>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Compile Include="AssemblyInfo.fs" />

src/Fable.Core/RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 3.7.0
2+
3+
* Fix #2863: Add a nestable union type U9 @cannorin
4+
* Fix links in doc comments
5+
16
### 3.6.2
27

38
* Fix #2805: Improve jsNative error messages

src/Fable.Transforms/Global/Compiler.fs

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

33
module Literals =
4-
let [<Literal>] VERSION = "3.7.9"
4+
let [<Literal>] VERSION = "3.7.10"
55

66
type CompilerOptionsHelper =
77
static member DefaultExtension = ".fs.js"

0 commit comments

Comments
 (0)