diff --git a/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj b/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj
index 932c6249fe..18b0b19110 100644
--- a/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj
+++ b/src/dotnet/Fable.Compiler/Fable.Compiler.fsproj
@@ -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.3</Version>
+    <Version>1.3.4</Version>
     <TargetFramework>netstandard1.6</TargetFramework>
   </PropertyGroup>
   <ItemGroup>
diff --git a/src/dotnet/Fable.Compiler/RELEASE_NOTES.md b/src/dotnet/Fable.Compiler/RELEASE_NOTES.md
index ffeb4c7db9..d5a3bb1de1 100644
--- a/src/dotnet/Fable.Compiler/RELEASE_NOTES.md
+++ b/src/dotnet/Fable.Compiler/RELEASE_NOTES.md
@@ -1,6 +1,6 @@
-### 1.3.3
+### 1.3.4
 
-* See dotnet-fable 1.3.3 release notes
+* See dotnet-fable 1.3.4 release notes
 
 ### 1.3.0-beta-009
 
diff --git a/src/dotnet/Fable.Core/Fable.Core.fsproj b/src/dotnet/Fable.Core/Fable.Core.fsproj
index 2ee38bc4a1..ce7cf642e9 100644
--- a/src/dotnet/Fable.Core/Fable.Core.fsproj
+++ b/src/dotnet/Fable.Core/Fable.Core.fsproj
@@ -10,7 +10,7 @@
     <Authors>Alfonso García-Caro Núñez</Authors>
     <TargetFramework>netstandard1.6</TargetFramework>
     <GenerateDocumentationFile>true</GenerateDocumentationFile>
-    <Version>1.3.3</Version>
+    <Version>1.3.4</Version>
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="Util.fs" />
diff --git a/src/dotnet/Fable.Core/RELEASE_NOTES.md b/src/dotnet/Fable.Core/RELEASE_NOTES.md
index 7daabd13fb..f720df9be2 100644
--- a/src/dotnet/Fable.Core/RELEASE_NOTES.md
+++ b/src/dotnet/Fable.Core/RELEASE_NOTES.md
@@ -1,6 +1,6 @@
-### 1.3.3
+### 1.3.4
 
-* See dotnet-fable 1.3.3 release notes
+* See dotnet-fable 1.3.4 release notes
 
 ### 1.3.0-beta-009
 
diff --git a/src/dotnet/dotnet-fable/RELEASE_NOTES.md b/src/dotnet/dotnet-fable/RELEASE_NOTES.md
index 70f76e103a..173c5f8f1f 100644
--- a/src/dotnet/dotnet-fable/RELEASE_NOTES.md
+++ b/src/dotnet/dotnet-fable/RELEASE_NOTES.md
@@ -1,3 +1,9 @@
+### 1.3.4
+
+* Optimize assignment blocks as expressions (#1265)
+* Improve method resolution with function parameters
+* Fix applicative operators with 3-arg functions
+
 ### 1.3.3
 
 * Add Char.IsWhiteSpace
diff --git a/src/dotnet/dotnet-fable/ToolsUtil.fs b/src/dotnet/dotnet-fable/ToolsUtil.fs
index a80a8fe0ba..504cbe79a1 100644
--- a/src/dotnet/dotnet-fable/ToolsUtil.fs
+++ b/src/dotnet/dotnet-fable/ToolsUtil.fs
@@ -2,7 +2,7 @@ namespace Fable.CLI
 
 module Constants =
 
-  let [<Literal>] VERSION = "1.3.3"
+  let [<Literal>] VERSION = "1.3.4"
   let [<Literal>] DEFAULT_PORT = 61225
 
 /// These values must be only set by the Main method
diff --git a/src/dotnet/dotnet-fable/dotnet-fable.fsproj b/src/dotnet/dotnet-fable/dotnet-fable.fsproj
index a1bb7ae273..369ff36b78 100644
--- a/src/dotnet/dotnet-fable/dotnet-fable.fsproj
+++ b/src/dotnet/dotnet-fable/dotnet-fable.fsproj
@@ -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.3</Version>
+    <Version>1.3.4</Version>
     <OutputType>Exe</OutputType>
     <PackageType>DotnetCliTool</PackageType>
     <TargetFramework>netcoreapp2.0</TargetFramework>