packages feed

appar 0.1.7 → 0.1.8

raw patch · 2 files changed

+4/−1 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Text/Appar/Parser.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} {-# LANGUAGE OverloadedStrings #-}  {-|@@ -85,7 +86,9 @@         (Nothing, bs') -> (Nothing, bs')         (Just a,  bs') -> runParser (f a) bs'     -- fixme: GHC 8.x will remove the fail method+#if !MIN_VERSION_base(4,13,0)     fail = Fail.fail+#endif  instance MonadFail (MkParser inp) where     fail _   = P $ \bs -> (Nothing, bs)
appar.cabal view
@@ -1,5 +1,5 @@ Name:                   appar-Version:                0.1.7+Version:                0.1.8 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3