diff --git a/keyword-args.cabal b/keyword-args.cabal
--- a/keyword-args.cabal
+++ b/keyword-args.cabal
@@ -1,6 +1,7 @@
 name:                keyword-args
-version:             0.2.0.1
+version:             0.2.0.2
 synopsis:            Extract data from a keyword-args config file format
+homepage:            https://github.com/stackbuilders/keyword-args
 
 description: Extracts data from a configuration file with keywords
              separated fram arguments by one or more spaces. Removes
@@ -14,13 +15,13 @@
 category:            Data
 build-type:          Simple
 cabal-version:       >=1.10
-
+bug-reports:         https://github.com/stackbuilders/keyword-args/issues
 
 executable keyword-args
   main-is:             Main.hs
   other-modules:       Data.KeywordArgs.Parse
 
-  build-depends:         base >=4.5 && <4.8
+  build-depends:         base >=4.5 && <4.9
                        , parsec >= 3.1.0 && <= 3.2
                        , containers
                        , cassava
@@ -32,7 +33,7 @@
 
 library
   exposed-modules:    Data.KeywordArgs.Parse
-  build-depends:         base >=4.5 && <4.8
+  build-depends:         base >=4.5 && <4.9
                        , parsec >= 3.1.0 && <= 3.2
                        , containers
 
@@ -44,15 +45,16 @@
   type: exitcode-stdio-1.0
   hs-source-dirs: spec, src
   main-is: Spec.hs
-  build-depends:       base >=4.5 && <4.8
+  build-depends:       base >=4.5 && <4.9
                        , parsec >= 3.1.0 && <= 3.2
                        , containers
 
                        , hspec
+                       , parseerror-eq
 
   default-language:    Haskell2010
   ghc-options:         -Wall
 
 source-repository head
   type:     git
-  location: https://github.com/stackbuilders/keyword-args
+  location: git://github.com/stackbuilders/keyword-args.git
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -66,7 +66,7 @@
 parseConfig = parse configParser "(unknown)"
 
 configToList :: [(String, [String])] -> [[String]]
-configToList cfg = map (\line -> fst line : snd line) cfg
+configToList = map $ uncurry (:)
 
 runCheck :: IO ()
 runCheck = do
