diff --git a/CHANGELOG.md b/CHANGELOG.md
index af2b31c63..4d5cf6098 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## Version 1.1.14
+- Disable tests for golang 1.8 (@ChTimTsubasa)
+- Follow lint's new include path (@ChTimTsubasa)
+- Do not sleep through a context timeout(@mhseiden)
+
## Version 1.1.13
- User configurable Retry timeout for downloading (@mhseiden)
- Implement retry-uuid in the url (@ChTimTsubasa)
diff --git a/README.rst b/README.rst
index 9e5205162..075a6880e 100644
--- a/README.rst
+++ b/README.rst
@@ -26,6 +26,7 @@ Go
The driver requires the `Go language `_ 1.8 or higher. The supported operating systems are Linux, Mac OS, and Windows, but you may run the driver on other platforms if the Go language works correctly on those platforms.
+Note: The `Go language `_ 1.8 will no longer be supported from Nov 5th, 2018 since `Go lint`_ already dropped their support for 1.8.
Installation
================================================================================
diff --git a/version.go b/version.go
index 53f32a87c..dd9113126 100644
--- a/version.go
+++ b/version.go
@@ -3,4 +3,4 @@
package gosnowflake
// SnowflakeGoDriverVersion is the version of Go Snowflake Driver.
-const SnowflakeGoDriverVersion = "1.1.13"
+const SnowflakeGoDriverVersion = "1.1.14"