Skip to content

Commit

Permalink
Bump version to 1.3.0-beta-008
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Nov 14, 2017
1 parent fbf3487 commit c38efba
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 14 deletions.
22 changes: 16 additions & 6 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ let coreJsSrcDir = "src/js/fable-core"
let installDotnetSdk () =
dotnetExePath <- DotNetCli.InstallDotNetSDK dotnetcliVersion

let clean () =
let clean_ (full: bool) =
!! "src/dotnet/**/bin"
-- "src/dotnet/Fable.Client.JS/demo/**"
-- "src/dotnet/Fable.Client.JS/testapp/**"
Expand All @@ -61,10 +61,19 @@ let clean () =
++ "build"
|> CleanDirs

!! "src/dotnet/**/obj/*.nuspec"
++"src/plugins/nunit/obj/*.nuspec"
++"tests**/**/obj/*.nuspec"
|> DeleteFiles
if full then
!! "src/dotnet/**/obj"
++"src/plugins/nunit/obj"
++"tests**/**/obj"
|> CleanDirs
else
!! "src/dotnet/**/obj/*.nuspec"
++"src/plugins/nunit/obj/*.nuspec"
++"tests**/**/obj/*.nuspec"
|> DeleteFiles

let clean () = clean_ false
let fullClean () = clean_ true

let nugetRestore baseDir () =
run (baseDir </> "Fable.Core") dotnetExePath "restore"
Expand Down Expand Up @@ -179,6 +188,7 @@ Target "GitHubRelease" (fun _ ->
)

Target "Clean" clean
Target "FullClean" fullClean
Target "NugetRestore" (nugetRestore "src/dotnet")
Target "FableCLI" (fun _ ->
nugetRestore "src/dotnet" ()
Expand All @@ -204,7 +214,7 @@ Target "PublishPackages" (fun () ->
Some buildSplitter, "js/fable-splitter"
]
installDotnetSdk ()
clean ()
fullClean ()
publishPackages2 baseDir dotnetExePath packages
)

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-007</Version>
<Version>1.3.0-beta-008</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-007
### 1.3.0-beta-008

* See dotnet-fable 1.3.0-beta-007 release notes
* See dotnet-fable 1.3.0-beta-008 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-007</Version>
<Version>1.3.0-beta-008</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-007
### 1.3.0-beta-008

* See dotnet-fable 1.3.0-beta-007 release notes
* See dotnet-fable 1.3.0-beta-008 release notes

### 1.2.4

Expand Down
7 changes: 7 additions & 0 deletions src/dotnet/dotnet-fable/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 1.3.0-beta-008

* Add DateTimeOffset
* Added inf, nan operators
* Fix #1223: Async.StartChild
* Fix #1230: Seq.singleton returns empty after first use

### 1.3.0-beta-007

* Fix #1227: Names in paket.references are not case sensitive
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-007"
let [<Literal>] VERSION = "1.3.0-beta-008"
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-007</Version>
<Version>1.3.0-beta-008</Version>
<OutputType>Exe</OutputType>
<PackageType>DotnetCliTool</PackageType>
<TargetFramework>netcoreapp2.0</TargetFramework>
Expand Down

0 comments on commit c38efba

Please sign in to comment.