keyword-args 0.2.0.1 → 0.2.0.2
raw patch · 2 files changed
+9/−7 lines, 2 filesdep +parseerror-eqdep ~basenew-uploaderPVP ok
version bump matches the API change (PVP)
Dependencies added: parseerror-eq
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- keyword-args.cabal +8/−6
- src/Main.hs +1/−1
keyword-args.cabal view
@@ -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
src/Main.hs view
@@ -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