Skip to content

Commit

Permalink
Bump version to 1.3.0-beta-007
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Nov 10, 2017
1 parent 787b20d commit 5c79902
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageIconUrl>https://raw.githubusercontent.com/fable-compiler/Fable/master/docs/img/fable_logo.png</PackageIconUrl>
<PackageTags>fsharp;fable;javascript;f#;js</PackageTags>
<Authors>Alfonso García-Caro Núñez</Authors>
<Version>1.3.0-beta-006</Version>
<Version>1.3.0-beta-007</Version>
<TargetFramework>netstandard1.6</TargetFramework>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/dotnet/Fable.Compiler/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Fable.Core/Fable.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Authors>Alfonso García-Caro Núñez</Authors>
<TargetFramework>netstandard1.6</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>1.3.0-beta-006</Version>
<Version>1.3.0-beta-007</Version>
</PropertyGroup>
<ItemGroup>
<Compile Include="Util.fs" />
Expand Down
4 changes: 2 additions & 2 deletions src/dotnet/Fable.Core/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 6 additions & 0 deletions src/dotnet/dotnet-fable/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/dotnet-fable/ToolsUtil.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Fable.CLI

module Constants =

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

/// These values must be only set by the Main method
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/dotnet-fable/dotnet-fable.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageIconUrl>https://raw.githubusercontent.com/fable-compiler/Fable/master/docs/img/fable_logo.png</PackageIconUrl>
<PackageTags>fsharp;fable;javascript;f#;js</PackageTags>
<Authors>Alfonso García-Caro Núñez</Authors>
<Version>1.3.0-beta-006</Version>
<Version>1.3.0-beta-007</Version>
<OutputType>Exe</OutputType>
<PackageType>DotnetCliTool</PackageType>
<TargetFramework>netcoreapp2.0</TargetFramework>
Expand Down

0 comments on commit 5c79902

Please sign in to comment.