diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -2,7 +2,7 @@
 please email jakewheatmail@gmail.com or use the github bug tracker,
 https://github.com/JakeWheat/simple-sql-parser/issues.
 
-0.4.1 (commit c156c5c34e91e1f7ef449d2c1ea14e282104fd90)
+0.4.1 (commit TBD)
 	tested with ghc 7.4.2, 7.6.3, 7.8.4,7.10.0.20150123
 	simple demonstration of how dialects could be handled internally
 	add ability to add comments to syntax tree to help with generating
diff --git a/simple-sql-parser.cabal b/simple-sql-parser.cabal
--- a/simple-sql-parser.cabal
+++ b/simple-sql-parser.cabal
@@ -1,5 +1,5 @@
 name:                simple-sql-parser
-version:             0.4.1
+version:             0.4.2
 synopsis:            A parser for SQL queries
 
 description:         A parser for SQL queries. Parses most SQL:2011
@@ -33,7 +33,7 @@
   Other-Modules:       Language.SQL.SimpleSQL.Errors,
                        Language.SQL.SimpleSQL.Combinators
   other-extensions:    TupleSections
-  build-depends:       base >=4.5 && <4.9,
+  build-depends:       base >=4.5 && <4.10,
                        parsec >=3.1 && <3.2,
                        mtl >=2.1 && <2.3,
                        pretty >= 1.1 && < 1.2
@@ -46,12 +46,12 @@
   type:                exitcode-stdio-1.0
   main-is:             RunTests.lhs
   hs-source-dirs:      .,tools
-  Build-Depends:       base >=4.5 && <4.9,
+  Build-Depends:       base >=4.5 && <4.10,
                        parsec >=3.1 && <3.2,
                        mtl >=2.1 && <2.3,
                        pretty >= 1.1 && < 1.2,
 
-                       HUnit >= 1.2 && < 1.3,
+                       HUnit >= 1.2 && < 1.4,
                        test-framework >= 0.8 && < 0.9,
                        test-framework-hunit >= 0.3 && < 0.4
 
@@ -82,7 +82,7 @@
 executable SQLIndent
   main-is:             SQLIndent.lhs
   hs-source-dirs:      .,tools
-  Build-Depends:       base >=4.5 && <4.9,
+  Build-Depends:       base >=4.5 && <4.10,
                        parsec >=3.1 && <3.2,
                        mtl >=2.1 && <2.3,
                        pretty >= 1.1 && < 1.2
