diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,8 +1,10 @@
 # Revision history for cl3
 
-## 1.0.0.0  -- 2017-10-28
+## 1.0.0.2  -- 2018-06-19
 
-* First version. Released on an unsuspecting world.
+* Tested with GHC 7.8.4 and 8.4.2
+* Lowered version bounds to support lts-2.22, base >= 4.7, QuickCheck >= 2.7
+* Explicitly imported <$> from Control.Applicative to support the earlier versions of Base & GHC for the tests
 
 ## 1.0.0.1  -- 2018-06-10
 
@@ -10,4 +12,8 @@
 * Removed {-# OPTIONS_GHC -fno-warn-unused-top-binds #-} from Cl3.hs to better support earlier versions of GHC, and it was no longer needed.
 * Loosened version bound for QuickCheck to work better with earlier versions of Stackage LTS snapshots.
 * Improved spectraldcmp's documentation to clairify that spectraldcmp requires an implementation of the real, imaginary, and complex implememtation of the function.
+
+## 1.0.0.0  -- 2017-10-28
+
+* First version. Released on an unsuspecting world.
 
diff --git a/cl3.cabal b/cl3.cabal
--- a/cl3.cabal
+++ b/cl3.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             1.0.0.1
+version:             1.0.0.2
 
 -- A short (one-line) description of the package.
 synopsis:            Clifford Algebra of three dimensional space.
@@ -43,9 +43,11 @@
 
 build-type:          Simple
 
-tested-with:         GHC == 7.10.3,
+tested-with:         GHC == 7.8.4,
+                     GHC == 7.10.3,
                      GHC == 8.0.2,
-                     GHC == 8.2.2
+                     GHC == 8.2.2,
+                     GHC == 8.4.2
 
 -- Extra files to be distributed with the package, such as examples or a 
 -- README.
@@ -80,7 +82,7 @@
   
   -- Other library packages from which modules are imported.
   build-depends:       
-    base >=4.8 && <5,
+    base >=4.7 && <5,
     random >=1.0 && <2
   
   -- Directories containing source files.
@@ -97,8 +99,8 @@
   ghc-options: -Wall -O2
   build-depends: 
     cl3,
-    base >=4.8 && <5,
-    QuickCheck >=2.8 && <3
+    base >=4.7 && <5,
+    QuickCheck >=2.7 && <3
   default-language: Haskell2010
 
 -- Criterion based benchmark
@@ -109,6 +111,6 @@
   ghc-options: -Wall -O2
   build-depends:
     cl3,
-    base >=4.8 && <5,
+    base >=4.7 && <5,
     criterion >=1.1 && <2
   default-language: Haskell2010
diff --git a/tests/TestCl3.hs b/tests/TestCl3.hs
--- a/tests/TestCl3.hs
+++ b/tests/TestCl3.hs
@@ -18,7 +18,7 @@
 
 import Test.QuickCheck (Arbitrary, arbitrary, oneof, suchThat, quickCheckWith, stdArgs, maxSuccess)
 import Algebra.Geometric.Cl3
-import Control.Applicative ((<*>))
+import Control.Applicative ((<*>), (<$>))
 
 
 ------------------------------------------------------------------
