packages feed

deriving-aeson 0.1.1 → 0.1.2

raw patch · 3 files changed

+10/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Deriving.Aeson.Stock: CustomJSON :: a -> CustomJSON t a
+ Deriving.Aeson.Stock: [unCustomJSON] :: CustomJSON t a -> a
+ Deriving.Aeson.Stock: newtype CustomJSON t a

Files

CHANGELOG.md view
@@ -1,5 +1,13 @@ # Revision history for deriving-aeson +## 0.1.2++* Reexported `CustomJSON(..)` from `Deriving.Aeson.Stock`++## 0.1.1++* Added `Deriving.Aeson.Stock`+ ## 0 -- 2020-02-26  * First version. Released on an unsuspecting world.
deriving-aeson.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.4 name:                deriving-aeson-version:             0.1.1+version:             0.1.2 synopsis:            Type driven generic aeson instance customisation description:         This package provides a newtype wrapper with   FromJSON/ToJSON instances customisable via a phantom type parameter.
src/Deriving/Aeson/Stock.hs view
@@ -6,6 +6,7 @@   , PrefixedSnake   , Snake   -- * Reexports+  , CustomJSON(..)   , FromJSON   , ToJSON   , Generic) where