Skip to content

Commit ca069b0

Browse files
Bump version to 1.3.0
1 parent 7dcb8ad commit ca069b0

File tree

7 files changed

+33
-4
lines changed

7 files changed

+33
-4
lines changed

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-009</Version>
11+
<Version>1.3.0</Version>
1212
<TargetFramework>netstandard1.6</TargetFramework>
1313
</PropertyGroup>
1414
<ItemGroup>

src/dotnet/Fable.Compiler/RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.3.0
2+
3+
* See dotnet-fable 1.3.0 release notes
4+
15
### 1.3.0-beta-009
26

37
* See dotnet-fable 1.3.0-beta-009 release notes

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-009</Version>
13+
<Version>1.3.0</Version>
1414
</PropertyGroup>
1515
<ItemGroup>
1616
<Compile Include="Util.fs" />

src/dotnet/Fable.Core/RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.3.0
2+
3+
* See dotnet-fable 1.3.0 release notes
4+
15
### 1.3.0-beta-009
26

37
* See dotnet-fable 1.3.0-beta-009 release notes

src/dotnet/dotnet-fable/RELEASE_NOTES.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
### 1.3.0
2+
3+
* Optimize watch compilations
4+
* Add dependencies to ensure all necessary files are recompiled in a watch compilation (#1188)
5+
* Enable nested options (#1189, #1219)
6+
* Remove closures generated by F# compiler
7+
* Add DateTimeOffset
8+
* Added inf, nan operators
9+
* Fix #1218: Multiple namespaces in same file
10+
* Fix #1230: Seq.singleton returns empty after first use
11+
* Fix #1227: Names in paket.references are not case sensitive
12+
* Fix #1223: Async.StartChild
13+
* Fix #1216: Print.sprintf (note the qualified module)
14+
* Fix #1204: kprintf works indirectly
15+
* Fix #1203: choose and pick with generic options
16+
* Fix #1201: Cannot find replacement for `System.Char::ToUpper`
17+
* Fix #1193 and other string printing errors
18+
* Fix #1190: Trait calls don't check inherited members
19+
* Fix #1187: List.truncate returning one-too-many elements
20+
* Fix #1186: Negated negative values
21+
122
### 1.3.0-beta-009
223

324
* Fix #1218: Multiple namespaces in same file

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-009"
5+
let [<Literal>] VERSION = "1.3.0"
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-009</Version>
11+
<Version>1.3.0</Version>
1212
<OutputType>Exe</OutputType>
1313
<PackageType>DotnetCliTool</PackageType>
1414
<TargetFramework>netcoreapp2.0</TargetFramework>

0 commit comments

Comments
 (0)