diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@
 
 Standard aeson library reads the whole input, creates an object in memory representing
 the JSON structure which is then converted into proper values using FromJSON instances.
-This library is compatibile with aeson - you can immediately use FromJSON instances almost without
+This library is compatible with aeson - you can immediately use FromJSON instances almost without
 any change in code and enjoy incremental parsing. The real strength is in the applicative interface
 which allows to parse only those parts of JSON that are of interest while skipping what is not needed.
 
diff --git a/json-stream.cabal b/json-stream.cabal
--- a/json-stream.cabal
+++ b/json-stream.cabal
@@ -1,5 +1,5 @@
 name:                json-stream
-version:             0.4.1.3
+version:             0.4.1.4
 synopsis:            Incremental applicative JSON parser
 description:         Easy to use JSON parser fully supporting incremental parsing.
                      Parsing grammar in applicative form.
@@ -36,7 +36,7 @@
   c-sources:           c_lib/lexer.c, c_lib/unescape_string.c
   includes:            c_lib/lexer.h
   include-dirs:        c_lib
-  build-depends:         base >=4.7 && <4.10
+  build-depends:         base >=4.7 && <4.11
                        , bytestring
                        , text
                        , aeson >= 0.7
@@ -58,7 +58,7 @@
   includes:            c_lib/lexer.h
   include-dirs:        c_lib
   cc-options:          -fPIC
-  Build-Depends:        base >= 4.7 && <4.10
+  Build-Depends:        base >= 4.7 && <4.11
                        , doctest >= 0.9.3
                        , bytestring
                        , text
@@ -83,7 +83,7 @@
   hs-source-dirs:      test, .
   default-language:    Haskell2010
   ghc-options:         -Wall
-  build-depends:         base >=4.7 && <4.10
+  build-depends:         base >=4.7 && <4.11
                        , bytestring
                        , text
                        , aeson
