Skip to content

Commit

Permalink
Release 3.7.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mangel committed May 11, 2023
1 parent 17ed013 commit 06e0b14
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 15 deletions.
11 changes: 6 additions & 5 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<PropertyGroup>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>3.7.20</Version>
<PackageVersion>3.7.20</PackageVersion>
<PackageReleaseNotes>* Ignore missing files when checking outdated compilation
* Print name of non-arrow function expressions</PackageReleaseNotes>
<TargetFramework>net6.0</TargetFramework>
<Version>3.7.21</Version>
<PackageVersion>3.7.21</PackageVersion>
<PackageReleaseNotes>* Fix #3441: Don't ignore error when loading plugin
* PR #3448: Prevent Fable 3 to hang if called from .NET 7
* Move Fable 3 to .NET 6</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
6 changes: 6 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 3.7.21

* Fix #3441: Don't ignore error when loading plugin
* PR #3448: Prevent Fable 3 to hang if called from .NET 7
* Move Fable 3 to .NET 6

### 3.7.20

* Ignore missing files when checking outdated compilation
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.PublishUtils/Fable.PublishUtils.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>2.4.0</Version>
<PackageVersion>2.4.0</PackageVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Fable

module Literals =
let [<Literal>] VERSION = "3.7.20"
let [<Literal>] VERSION = "3.7.21"

type CompilerOptionsHelper =
static member DefaultExtension = ".fs.js"
Expand Down
2 changes: 1 addition & 1 deletion src/tools/ASTViewer/ASTViewer.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/tools/InjectProcessor/InjectProcessor.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Compiler/Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net5</TargetFramework>
<TargetFramework>net6</TargetFramework>
<RollForward>Major</RollForward>
<DefineConstants>$(DefineConstants);DOTNET_FILE_SYSTEM</DefineConstants>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/Fable.Tests.Integration.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net5</TargetFramework>
<TargetFramework>net6</TargetFramework>
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
<OtherFlags>$(OtherFlags) --crossoptimize-</OtherFlags>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
<OtherFlags>$(OtherFlags) --crossoptimize-</OtherFlags>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
<OtherFlags>$(OtherFlags) --crossoptimize-</OtherFlags>
</PropertyGroup>
Expand Down

0 comments on commit 06e0b14

Please sign in to comment.