Skip to content

Commit 5c79902

Browse files
Bump version to 1.3.0-beta-007
1 parent 787b20d commit 5c79902

File tree

8 files changed

+17
-11
lines changed

8 files changed

+17
-11
lines changed

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ Target "GitHubRelease" (fun _ ->
163163
|> Seq.tryFind (fun (s: string) -> s.Contains(gitOwner + "/" + project))
164164
|> function None -> gitHome + "/" + project | Some (s: string) -> s.Split().[0]
165165

166-
// StageAll ""
167-
// Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)
168-
// Branches.pushBranch "" remote (Information.getBranchName "")
166+
StageAll ""
167+
Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)
168+
Branches.pushBranch "" remote (Information.getBranchName "")
169169

170170
Branches.tag "" release.NugetVersion
171171
Branches.pushTag "" remote release.NugetVersion

src/dotnet/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageIconUrl>https://raw.githubusercontent.com/fable-compiler/Fable/master/docs/img/fable_logo.png</PackageIconUrl>
99
<PackageTags>fsharp;fable;javascript;f#;js</PackageTags>
1010
<Authors>Alfonso García-Caro Núñez</Authors>
11-
<Version>1.3.0-beta-006</Version>
11+
<Version>1.3.0-beta-007</Version>
1212
<TargetFramework>netstandard1.6</TargetFramework>
1313
</PropertyGroup>
1414
<ItemGroup>

src/dotnet/Fable.Compiler/RELEASE_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
### 1.3.0-beta-003
1+
### 1.3.0-beta-007
22

3-
* See dotnet-fable 1.3.0-beta-003 release notes
3+
* See dotnet-fable 1.3.0-beta-007 release notes
44

55
### 1.2.4
66

src/dotnet/Fable.Core/Fable.Core.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Authors>Alfonso García-Caro Núñez</Authors>
1111
<TargetFramework>netstandard1.6</TargetFramework>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
13-
<Version>1.3.0-beta-006</Version>
13+
<Version>1.3.0-beta-007</Version>
1414
</PropertyGroup>
1515
<ItemGroup>
1616
<Compile Include="Util.fs" />

src/dotnet/Fable.Core/RELEASE_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
### 1.3.0-beta-003
1+
### 1.3.0-beta-007
22

3-
* See dotnet-fable 1.3.0-beta-003 release notes
3+
* See dotnet-fable 1.3.0-beta-007 release notes
44

55
### 1.2.4
66

src/dotnet/dotnet-fable/RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.3.0-beta-007
2+
3+
* Fix #1227: Names in paket.references are not case sensitive
4+
* Fix #1216: Print.sprintf (note the qualified module)
5+
* More fixes for nested options (see PR #1219)
6+
17
### 1.3.0-beta-005
28

39
* Add `PackageType` to dotnet-fable.fsproj

src/dotnet/dotnet-fable/ToolsUtil.fs

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

33
module Constants =
44

5-
let [<Literal>] VERSION = "1.3.0-beta-005"
5+
let [<Literal>] VERSION = "1.3.0-beta-007"
66
let [<Literal>] DEFAULT_PORT = 61225
77

88
/// These values must be only set by the Main method

src/dotnet/dotnet-fable/dotnet-fable.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageIconUrl>https://raw.githubusercontent.com/fable-compiler/Fable/master/docs/img/fable_logo.png</PackageIconUrl>
99
<PackageTags>fsharp;fable;javascript;f#;js</PackageTags>
1010
<Authors>Alfonso García-Caro Núñez</Authors>
11-
<Version>1.3.0-beta-006</Version>
11+
<Version>1.3.0-beta-007</Version>
1212
<OutputType>Exe</OutputType>
1313
<PackageType>DotnetCliTool</PackageType>
1414
<TargetFramework>netcoreapp2.0</TargetFramework>

0 commit comments

Comments
 (0)