packages feed

aeson 0.3.2.0 → 0.3.2.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/Aeson/Encode/Int.hs view
@@ -25,7 +25,7 @@     | otherwise = go i   where     go n | n < 10    = digit n-         | otherwise = go (n `rem` 10) `mappend` digit (n `quot` 10)+         | otherwise = go (n `quot` 10) `mappend` digit (n `rem` 10)  digit :: Int -> Builder digit n = fromWord8 $! fromIntegral n + 48
aeson.cabal view
@@ -1,5 +1,5 @@ name:            aeson-version:         0.3.2.0+version:         0.3.2.1 license:         BSD3 license-file:    LICENSE category:        Text, Web, JSON