diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+0.1.3 (2018-03-17)
+==================
+
+*   Support for GHC-8.4.1
+
 0.1.2
 =====
 
diff --git a/benchmark/Benchmarks.hs b/benchmark/Benchmarks.hs
--- a/benchmark/Benchmarks.hs
+++ b/benchmark/Benchmarks.hs
@@ -25,7 +25,7 @@
 
 data Impl = Impl String (Natural → IO ByteString)
 
-benchmarks ∷ [Impl] →  [Benchmark]
+benchmarks ∷ [Impl] → [Benchmark]
 benchmarks impls =
     [ bgroup "single-threaded"
         [ singleThreaded impls 1024
@@ -37,7 +37,7 @@
         ]
     ]
 
-largeBenchmarks ∷ [Impl] →  [Benchmark]
+largeBenchmarks ∷ [Impl] → [Benchmark]
 largeBenchmarks impls =
     [ bgroup "single-threaded"
         [ singleThreaded impls 1024
@@ -53,7 +53,7 @@
         ]
     ]
 
-compareBenchmarks ∷ [Impl] →  [Benchmark]
+compareBenchmarks ∷ [Impl] → [Benchmark]
 compareBenchmarks impls =
     [ singleThreaded impls (1024 * 1024)
     , singleThreaded impls (1024 * 1024 * 10)
diff --git a/random-bytestring.cabal b/random-bytestring.cabal
--- a/random-bytestring.cabal
+++ b/random-bytestring.cabal
@@ -1,5 +1,5 @@
 Name: random-bytestring
-Version: 0.1.2
+Version: 0.1.3
 Synopsis: Efficient generation of random bytestrings
 Description:
     Efficient generation of random bytestrings. The implementation
@@ -18,19 +18,19 @@
     applications. They are /not/ suitable for cryptographic
     applications.
     .
-    ![benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.2/src/benchmarks.png)
+    ![benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.3/src/benchmarks.png)
     .
-    ![detailed benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.2/src/benchmarks-details.png)
+    ![detailed benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.3/src/benchmarks-details.png)
 
 Homepage: https://www.github.com/larskuhtz/random-bytestring
 License: MIT
 Author: Lars Kuhtz <lakuhtz@gmail.com>
 Maintainer: Lars Kuhtz <lakuhtz@gmail.com>
-Copyright: Copyright (c) 2017 Lars Kuhtz <lakuhtz@gmail.com>
+Copyright: Copyright (c) 2017-2018 Lars Kuhtz <lakuhtz@gmail.com>
 Category: System
 Build-type: Simple
 Cabal-version: >= 1.18
-Tested-With: GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.1
+Tested-With: GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1
 License-file: LICENSE
 
 extra-doc-files:
@@ -54,7 +54,7 @@
         Data.ByteString.Random.MWC
 
     build-depends:
-        base >= 4.7 && < 4.11,
+        base >= 4.7 && < 4.12,
         bytestring >= 0.10,
         mwc-random >= 0.13,
         pcg-random >= 0.1
@@ -74,7 +74,7 @@
     build-depends:
         random-bytestring,
         async >= 2.1,
-        base >= 4.7 && < 4.11,
+        base >= 4.7 && < 4.12,
         bytestring >= 0.10,
         criterion >= 1.1,
         entropy >= 0.3,
@@ -105,7 +105,7 @@
     build-depends:
         random-bytestring,
         async >= 2.1,
-        base >= 4.7 && < 4.11,
+        base >= 4.7 && < 4.12,
         bytestring >= 0.10,
         criterion >= 1.1,
         entropy >= 0.3,
@@ -136,7 +136,7 @@
     build-depends:
         random-bytestring,
         async >= 2.1,
-        base >= 4.7 && < 4.11,
+        base >= 4.7 && < 4.12,
         bytestring >= 0.10,
         criterion >= 1.1,
         entropy >= 0.3,
