packages feed

appar 0.1.5 → 0.1.6

raw patch · 2 files changed

+4/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Text/Appar/Parser.hs view
@@ -55,7 +55,7 @@  import Control.Applicative import Control.Monad-import Control.Monad.Fail+import Control.Monad.Fail as Fail import Data.Char import Text.Appar.Input @@ -84,6 +84,8 @@     p >>= f  = P $ \bs -> case runParser p bs of         (Nothing, bs') -> (Nothing, bs')         (Just a,  bs') -> runParser (f a) bs'+    -- fixme: GHC 8.x will remove the fail method+    fail = Fail.fail  instance MonadFail (MkParser inp) where     fail _   = P $ \bs -> (Nothing, bs)
appar.cabal view
@@ -1,5 +1,5 @@ Name:                   appar-Version:                0.1.5+Version:                0.1.6 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3