Skip to content

Commit

Permalink
Bump version to 1.3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed May 5, 2018
1 parent b1659e2 commit 69dc66a
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .paket/Paket.Restore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@

<!-- Because ReadAllText is slow on osx/linux, try to find shasum and awk -->
<PropertyGroup>
<PaketRestoreCachedHasher Condition="'$(OS)' != 'Windows_NT' And '$(PaketRestoreCachedHasher)' == '' And Exists('/usr/bin/shasum') And Exists('/usr/bin/awk')">/usr/bin/shasum $(PaketRestoreCacheFile) | /usr/bin/awk '{ print $1 }'</PaketRestoreCachedHasher>
<PaketRestoreLockFileHasher Condition="'$(OS)' != 'Windows_NT' And '$(PaketRestoreLockFileHash)' == '' And Exists('/usr/bin/shasum') And Exists('/usr/bin/awk')">/usr/bin/shasum $(PaketLockFilePath) | /usr/bin/awk '{ print $1 }'</PaketRestoreLockFileHasher>
<PaketRestoreCachedHasher Condition="'$(OS)' != 'Windows_NT' And '$(PaketRestoreCachedHasher)' == '' And Exists('/usr/bin/shasum') And Exists('/usr/bin/awk')">/usr/bin/shasum "$(PaketRestoreCacheFile)" | /usr/bin/awk '{ print $1 }'</PaketRestoreCachedHasher>
<PaketRestoreLockFileHasher Condition="'$(OS)' != 'Windows_NT' And '$(PaketRestoreLockFileHash)' == '' And Exists('/usr/bin/shasum') And Exists('/usr/bin/awk')">/usr/bin/shasum "$(PaketLockFilePath)" | /usr/bin/awk '{ print $1 }'</PaketRestoreLockFileHasher>
</PropertyGroup>

<!-- If shasum and awk exist get the hashes -->
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.15</Version>
<Version>1.3.16</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.15
### 1.3.16

* See dotnet-fable 1.3.15 release notes
* See dotnet-fable 1.3.16 release notes

### 1.3.10

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.12</Version>
<Version>1.3.16</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.12
### 1.3.16

* See dotnet-fable 1.3.12 release notes
* See dotnet-fable 1.3.16 release notes

### 1.3.9

Expand Down
5 changes: 5 additions & 0 deletions src/dotnet/dotnet-fable/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 1.3.16

* Fix #1395: Units of measure with long integers
* Fix #1397: import modules beginning with a number

### 1.3.15

* Allow unit for generic parameters decorated with Pojo attribute
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.15"
let [<Literal>] VERSION = "1.3.16"
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.15</Version>
<Version>1.3.16</Version>
<OutputType>Exe</OutputType>
<PackageType>DotnetCliTool</PackageType>
<TargetFramework>netcoreapp2.0</TargetFramework>
Expand Down

0 comments on commit 69dc66a

Please sign in to comment.