config-parser 0.1.0.6 → 0.2.0.0
raw patch · 2 files changed
+7/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Text.ConfigParser: ConfigOption :: Key -> Parser a -> (a -> c -> c) -> ConfigOption c
+ Text.ConfigParser: [action] :: ConfigOption c -> a -> c -> c
+ Text.ConfigParser: [key] :: ConfigOption c -> Key
+ Text.ConfigParser: [parser] :: ConfigOption c -> Parser a
+ Text.ConfigParser: parseFromFile :: ConfigParser c -> SourceName -> IO (Either ParseError c)
Files
- Text/ConfigParser.hs +6/−4
- config-parser.cabal +1/−1
Text/ConfigParser.hs view
@@ -64,8 +64,8 @@ {-# OPTIONS_HADDOCK ignore_exports #-} module Text.ConfigParser ( Key- , ConfigOption- , ConfigParser+ , ConfigOption(..)+ , ConfigParser(keyValue, lineCommentInit, defaults, options) , configParser_ , configParser , defaultKeyValue@@ -75,12 +75,13 @@ , integer , bool , list+ , parseFromFile ) where import Text.ConfigParser.Types ( Key- , ConfigOption- , ConfigParser+ , ConfigOption(..)+ , ConfigParser(keyValue, lineCommentInit, defaults, options) , configParser_ , configParser , defaultKeyValue@@ -93,4 +94,5 @@ , integer , bool , list+ , parseFromFile )
config-parser.cabal view
@@ -1,5 +1,5 @@ name: config-parser-version: 0.1.0.6+version: 0.2.0.0 synopsis: Parse config files using parsec and generate parse errors on unhandled keys description: This is yet another entry in Haskell's enourmous collection