diff --git a/build.fsx b/build.fsx index 7ffbf6582c..26e8a8880b 100644 --- a/build.fsx +++ b/build.fsx @@ -163,9 +163,9 @@ Target "GitHubRelease" (fun _ -> |> Seq.tryFind (fun (s: string) -> s.Contains(gitOwner + "/" + project)) |> function None -> gitHome + "/" + project | Some (s: string) -> s.Split().[0] - // StageAll "" - // Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion) - // Branches.pushBranch "" remote (Information.getBranchName "") + StageAll "" + Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion) + Branches.pushBranch "" remote (Information.getBranchName "") Branches.tag "" release.NugetVersion Branches.pushTag "" remote release.NugetVersion diff --git a/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj b/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj index 059ad610bd..3de9e21ffc 100644 --- a/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj +++ b/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj @@ -8,7 +8,7 @@ https://raw.githubusercontent.com/fable-compiler/Fable/master/docs/img/fable_logo.png fsharp;fable;javascript;f#;js Alfonso García-Caro Núñez - 1.3.0-beta-006 + 1.3.0-beta-007 netstandard1.6 diff --git a/src/dotnet/Fable.Compiler/RELEASE_NOTES.md b/src/dotnet/Fable.Compiler/RELEASE_NOTES.md index d650b55aeb..325545d18a 100644 --- a/src/dotnet/Fable.Compiler/RELEASE_NOTES.md +++ b/src/dotnet/Fable.Compiler/RELEASE_NOTES.md @@ -1,6 +1,6 @@ -### 1.3.0-beta-003 +### 1.3.0-beta-007 -* See dotnet-fable 1.3.0-beta-003 release notes +* See dotnet-fable 1.3.0-beta-007 release notes ### 1.2.4 diff --git a/src/dotnet/Fable.Core/Fable.Core.fsproj b/src/dotnet/Fable.Core/Fable.Core.fsproj index d5309aecde..7329684a27 100644 --- a/src/dotnet/Fable.Core/Fable.Core.fsproj +++ b/src/dotnet/Fable.Core/Fable.Core.fsproj @@ -10,7 +10,7 @@ Alfonso García-Caro Núñez netstandard1.6 true - 1.3.0-beta-006 + 1.3.0-beta-007 diff --git a/src/dotnet/Fable.Core/RELEASE_NOTES.md b/src/dotnet/Fable.Core/RELEASE_NOTES.md index fc57a25e25..e5c69d1f8a 100644 --- a/src/dotnet/Fable.Core/RELEASE_NOTES.md +++ b/src/dotnet/Fable.Core/RELEASE_NOTES.md @@ -1,6 +1,6 @@ -### 1.3.0-beta-003 +### 1.3.0-beta-007 -* See dotnet-fable 1.3.0-beta-003 release notes +* See dotnet-fable 1.3.0-beta-007 release notes ### 1.2.4 diff --git a/src/dotnet/dotnet-fable/RELEASE_NOTES.md b/src/dotnet/dotnet-fable/RELEASE_NOTES.md index 5afd29ff23..7ffc0d58c1 100644 --- a/src/dotnet/dotnet-fable/RELEASE_NOTES.md +++ b/src/dotnet/dotnet-fable/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +### 1.3.0-beta-007 + +* Fix #1227: Names in paket.references are not case sensitive +* Fix #1216: Print.sprintf (note the qualified module) +* More fixes for nested options (see PR #1219) + ### 1.3.0-beta-005 * Add `PackageType` to dotnet-fable.fsproj diff --git a/src/dotnet/dotnet-fable/ToolsUtil.fs b/src/dotnet/dotnet-fable/ToolsUtil.fs index 0894dfe24e..2160584c74 100644 --- a/src/dotnet/dotnet-fable/ToolsUtil.fs +++ b/src/dotnet/dotnet-fable/ToolsUtil.fs @@ -2,7 +2,7 @@ namespace Fable.CLI module Constants = - let [] VERSION = "1.3.0-beta-005" + let [] VERSION = "1.3.0-beta-007" let [] DEFAULT_PORT = 61225 /// These values must be only set by the Main method diff --git a/src/dotnet/dotnet-fable/dotnet-fable.fsproj b/src/dotnet/dotnet-fable/dotnet-fable.fsproj index 182a08e2b6..70d88ef9f1 100644 --- a/src/dotnet/dotnet-fable/dotnet-fable.fsproj +++ b/src/dotnet/dotnet-fable/dotnet-fable.fsproj @@ -8,7 +8,7 @@ https://raw.githubusercontent.com/fable-compiler/Fable/master/docs/img/fable_logo.png fsharp;fable;javascript;f#;js Alfonso García-Caro Núñez - 1.3.0-beta-006 + 1.3.0-beta-007 Exe DotnetCliTool netcoreapp2.0