diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,18 @@
 Changelog
 =========
 
-Version 0.1.1.1
+Version 0.1.1.x
 ---------------
 
 *Nov 13, 2018*
 
-<https://github.com/mstksg/hmatrix-vector-sized/releases/tag/v0.1.1.1>
+*   <https://github.com/mstksg/hmatrix-vector-sized/releases/tag/v0.1.1.1>
+    
+    Fix building on GHC 8.6.
 
-*   Fix building on GHC 8.6.
+*   <https://github.com/mstksg/hmatrix-vector-sized/releases/tag/v0.1.1.2>
+    
+    Fix tests building on GHC 8.6.
 
 Version 0.1.1.0
 ---------------
diff --git a/hmatrix-vector-sized.cabal b/hmatrix-vector-sized.cabal
--- a/hmatrix-vector-sized.cabal
+++ b/hmatrix-vector-sized.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 099428797d283e9c364d9864eeafde7718d5f1c900fc7d8a8e8bc0775cdfb939
+-- hash: 8e80ded1d28394026d3fe0117f363e0ba49be99cf24bdba7f7e79c2a83174970
 
 name:           hmatrix-vector-sized
-version:        0.1.1.1
+version:        0.1.1.2
 synopsis:       Conversions between hmatrix and vector-sized types
 description:    Conversions between statically sized types in hmatrix and vector-sized.
                 .
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -1,9 +1,14 @@
+{-# LANGUAGE CPP                                      #-}
 {-# LANGUAGE ScopedTypeVariables                      #-}
 {-# LANGUAGE TemplateHaskell                          #-}
 {-# LANGUAGE TypeApplications                         #-}
 {-# LANGUAGE TypeOperators                            #-}
 {-# OPTIONS_GHC -fno-warn-orphans                     #-}
 {-# OPTIONS_GHC -fplugin GHC.TypeLits.KnownNat.Solver #-}
+
+#if MIN_VERSION_base(4,12,0)
+{-# LANGUAGE NoStarIsType         #-}
+#endif
 
 import           Control.Monad
 import           Data.Complex
