diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Changes in 0.7.0.1
+
+  * GHC 7.10 support
+
+
 Changes in 0.7.0.0
 
   * Type level addition for unary numbers added
diff --git a/Data/Vector/Fixed.hs b/Data/Vector/Fixed.hs
--- a/Data/Vector/Fixed.hs
+++ b/Data/Vector/Fixed.hs
@@ -164,10 +164,9 @@
 import qualified Data.Vector.Fixed.Cont as C
 import Data.Vector.Fixed.Internal
 
-import Prelude hiding ( replicate,map,zipWith,maximum,minimum,and,or,all,any
-                      , foldl,foldr,foldl1,length,sum,reverse,scanl,scanl1
-                      , head,tail,mapM,mapM_,sequence,sequence_,concat
-                      )
+import Prelude (Show(..),Eq(..),Ord(..),Functor(..),id,(.),($))
+-- Needed for doctest
+import Prelude (Char)
 
 
 -- $construction
diff --git a/fixed-vector.cabal b/fixed-vector.cabal
--- a/fixed-vector.cabal
+++ b/fixed-vector.cabal
@@ -1,5 +1,5 @@
 Name:           fixed-vector
-Version:        0.7.0.0
+Version:        0.7.0.1
 Synopsis:       Generic vectors with statically known size.
 Description:
   Generic library for vectors with statically known
