packages feed

htoml-megaparsec 1.0.1.11 → 1.0.1.12

raw patch · 2 files changed

+7/−13 lines, 2 filesdep ~containersdep ~megaparsecdep ~unordered-containersPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: containers, megaparsec, unordered-containers, vector

API changes (from Hackage documentation)

- Text.Toml.Types: type TomlM m = MonadState (Set [Text]) m
+ Text.Toml.Types: type TomlM m = (MonadState (Set [Text]) m)

Files

htoml-megaparsec.cabal view
@@ -1,16 +1,16 @@ name:                     htoml-megaparsec-version:                  1.0.1.11+version:                  1.0.1.12 synopsis:                 Parser for TOML files description:              TOML is an obvious and minimal format for config files.                           This package provides a TOML parser                           built with the Megaparsec.-homepage:                 https://github.com/vmchale/htoml-megaparsec-bug-reports:              https://github.com/vmchale/htoml-megaparsec/issues+homepage:                 https://hub.darcs.net/vmchale/htoml-megaparsec+bug-reports:              https://hub.darcs.net/vmchale/htoml-megaparsec/issues license:                  BSD3 license-file:             LICENSE copyright:                (c) 2013-2016 Cies Breijs, 2017 Vanessa McHale author:                   Cies Breijs, Vanessa McHale-maintainer:               Vanessa McHale <vanessa.mchale@reconfigure.io>+maintainer:               Vanessa McHale <vamchale@gmail.com> category:                 Data, Text, Configuration, Language, TOML build-type:               Simple cabal-version:            >= 1.18@@ -26,7 +26,7 @@  source-repository head   type:                   git-  location:               https://github.com/cies/htoml.git+  location:               https://hub.darcs.net/vmchale/htoml-megaparsec  library   exposed-modules:        Text.Toml@@ -83,12 +83,6 @@   type:                   exitcode-stdio-1.0   default-language:       Haskell2010   build-depends:          base-                        , containers-                        , unordered-containers-                        , vector-                        , aeson-                        , text-                        , time-			  -- from here non-lib deps                         , htoml-megaparsec                         , criterion+                        , text
src/Text/Toml/Parser.hs view
@@ -10,7 +10,7 @@   , module Text.Toml.Types   ) where -import           Control.Applicative    hiding (many, optional, (<|>))+import           Control.Applicative    hiding (many, optional, some, (<|>)) import           Control.Monad import           Control.Monad.State    (evalState) import qualified Data.HashMap.Lazy      as M