diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for crypto-rng
 
+## 0.1.0.2  -- 2018-03-14
+
+* Dropped support for GHC 7.8 and 7.10.
+
 ## 0.1.0.1  -- 2017-01-18
 
 * Removed a redundant constraint that led to build failures with GHC 8.0.2.
diff --git a/crypto-rng.cabal b/crypto-rng.cabal
--- a/crypto-rng.cabal
+++ b/crypto-rng.cabal
@@ -1,5 +1,5 @@
 name:                crypto-rng
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            Cryptographic random number generator.
 
 description:         Convenient wrapper for the cryptographic random generator
@@ -14,7 +14,7 @@
 copyright:           Scrive AB
 category:            Crypto
 build-type:          Simple
-tested-with:         GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
+tested-with:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1
 extra-source-files:  ChangeLog.md
 cabal-version:       >=1.10
 
@@ -27,12 +27,12 @@
                        Crypto.RNG.Class
                        Crypto.RNG.Utils
   build-depends:       base < 5,
-                       DRBG              >= 0.5.5 && < 0.6,
+                       DRBG              >= 0.5.5  && < 0.6,
                        bytestring        >= 0.10.8 && < 0.11,
                        crypto-api        >= 0.13.2 && < 0.14,
-                       mtl               >= 2.2.1 && < 2.3,
-                       exceptions        >= 0.8.3 && < 0.9,
-                       monad-control     >= 1.0.1 && < 1.1,
-                       transformers-base >= 0.4.4 && < 0.5
+                       mtl               >= 2.2.1  && < 2.3,
+                       exceptions        >= 0.8.3  && < 0.11,
+                       monad-control     >= 1.0.1  && < 1.1,
+                       transformers-base >= 0.4.4  && < 0.5
   hs-source-dirs:      src
   default-language:    Haskell2010
