diff --git a/gll.cabal b/gll.cabal
--- a/gll.cabal
+++ b/gll.cabal
@@ -3,7 +3,7 @@
 
 -- The name of the package.
 name:                gll
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            GLL parser with simple combinator interface 
 license:             BSD3
 license-file:        LICENSE
@@ -12,11 +12,11 @@
 category:            Compilers
 build-type:          Simple 
 cabal-version:       >=1.8
-tested-with:         GHC == 7.6.3
+tested-with:         GHC == 7.10.1
 
 library
     hs-source-dirs  :   src
-    build-depends   :     base >=4.5 && <= 4.6.0.1
+    build-depends   :     base >=4.5 && <= 4.8.0.0
                         , containers >= 0.4
                         , array
     exposed-modules :   GLL.Combinators.Combinators
diff --git a/src/GLL/Combinators/Combinators.hs b/src/GLL/Combinators/Combinators.hs
--- a/src/GLL/Combinators/Combinators.hs
+++ b/src/GLL/Combinators/Combinators.hs
@@ -10,6 +10,8 @@
     (<::=>)
     ) where
 
+import Prelude hiding ((<*>),(<*),(<$>),(<$))
+
 import GLL.Common
 import GLL.Types.Grammar hiding (epsilon)
 import GLL.Types.Abstract
