diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,7 @@
+1.1.4
+-----
+* Fix compilation on GHC 8.4
+
 1.1.3
 -----
 * Remove `text-format` dependency.
diff --git a/Database/EventStore/Internal/Control.hs b/Database/EventStore/Internal/Control.hs
--- a/Database/EventStore/Internal/Control.hs
+++ b/Database/EventStore/Internal/Control.hs
@@ -53,7 +53,7 @@
 
 --------------------------------------------------------------------------------
 import Data.Typeable
-#if __GLASGOW_HASKELL__ != 802
+#if __GLASGOW_HASKELL__ < 802
 import Data.Typeable.Internal
 #else
 import GHC.Fingerprint
diff --git a/eventstore.cabal b/eventstore.cabal
--- a/eventstore.cabal
+++ b/eventstore.cabal
@@ -2,10 +2,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: ffb75e0ab4772be3921ac8ea98ac1ded9960cd8692b62a4902d977950604c1b2
+-- hash: b8a617c94c97f413e69dfde04a72efe9b150c04f28bdd3ef5c6ee5576517e221
 
 name:           eventstore
-version:        1.1.3
+version:        1.1.4
 synopsis:       EventStore TCP Client
 description:    EventStore TCP Client <https://eventstore.org>
 category:       Database
