diff --git a/appveyor.yml b/appveyor.yml
index 8b9eb8ef1..e5962ae74 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -7,7 +7,7 @@
# - Section names should be unique on each level.
# Don't edit manually! Use `build.bat version` command instead!
-version: 1.6.18-build-0{build}
+version: 1.6.19-build-0{build}
os: Visual Studio 2015
diff --git a/nuspecs/Hangfire.Core.nuspec b/nuspecs/Hangfire.Core.nuspec
index c548e898e..e2f8a940c 100644
--- a/nuspecs/Hangfire.Core.nuspec
+++ b/nuspecs/Hangfire.Core.nuspec
@@ -14,6 +14,9 @@
Hangfire OWIN Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues
http://hangfire.io/blog/
+1.6.19
+• Fixed – NullReferenceException in JobMethodCallRenderer regression appeared in 1.6.18.
+
1.6.18
• Added – Add on option to remove the storage connection string from the footer (by @sandorfr).
• Added – Add Dashboard UI Resource zh-TW (by @crablin).
diff --git a/nuspecs/Hangfire.SqlServer.nuspec b/nuspecs/Hangfire.SqlServer.nuspec
index 4a2a6fd2d..1e4dc0414 100644
--- a/nuspecs/Hangfire.SqlServer.nuspec
+++ b/nuspecs/Hangfire.SqlServer.nuspec
@@ -14,6 +14,11 @@
Hangfire SqlServer SqlAzure LocalDB
http://hangfire.io/blog/
+1.6.19
+• Fixed – "String or binary data would be truncated" exception when state reason is too long.
+• Fixed – Command handling in batch mode now stops after the first error due to "XACT_ABORT ON".
+• Fixed – Make SqlCommandBatch disposable to dispose all the commands.
+
1.6.18
• Fixed – Rare deadlocks in SQL Server caused by the SetRangeInHash command.
diff --git a/nuspecs/Hangfire.nuspec b/nuspecs/Hangfire.nuspec
index 3985bd48a..b419c83c1 100644
--- a/nuspecs/Hangfire.nuspec
+++ b/nuspecs/Hangfire.nuspec
@@ -18,6 +18,18 @@
Copyright © 2013-2017 Sergey Odinokov
Hangfire AspNet MVC OWIN SqlServer Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues
http://hangfire.io/blog/
+
+1.6.19
+
+Hangfire.Core
+
+• Fixed – NullReferenceException in JobMethodCallRenderer regression appeared in 1.6.18.
+
+Hangfire.SqlServer
+
+• Fixed – "String or binary data would be truncated" exception when state reason is too long.
+• Fixed – Command handling in batch mode now stops after the first error due to "XACT_ABORT ON".
+• Fixed – Make SqlCommandBatch disposable to dispose all the commands.
1.6.18
diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs
index dcc2c80a8..72cf91991 100644
--- a/src/SharedAssemblyInfo.cs
+++ b/src/SharedAssemblyInfo.cs
@@ -9,4 +9,4 @@
[assembly: ComVisible(false)]
// Don't edit manually! Use `build.bat version` command instead!
-[assembly: AssemblyVersion("1.6.18")]
+[assembly: AssemblyVersion("1.6.19")]