packages feed

aeson-better-errors 0.9.1.1 → 0.9.1.2

raw patch · 3 files changed

+9/−1 lines, 3 filesdep ~mtlnew-uploaderPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: mtl

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for aeson-better-errors +## 0.9.1.2++* Make compatible with mtl-2.3+ ## 0.9.1.1  * Make compatible with aeson >2.0.0.0
aeson-better-errors.cabal view
@@ -1,5 +1,5 @@ name:                aeson-better-errors-version:             0.9.1.1+version:             0.9.1.2 synopsis:            Better error messages when decoding JSON values. license:             MIT license-file:        LICENSE
src/Data/Aeson/BetterErrors/Internal.hs view
@@ -10,6 +10,10 @@ import Control.Applicative (Applicative, pure, (<$>), (<*>)) import Data.Foldable (foldMap) #endif+#if MIN_VERSION_mtl(2, 3, 0)+import Control.Monad (forM)+#else+#endif  import Control.Arrow (left) import Control.Monad.Identity