generic-data 0.8.0.0 → 0.8.1.0
raw patch · 3 files changed
+6/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Generic.Data: type Old a = GOld (Rep a)
Files
- CHANGELOG.md +4/−0
- generic-data.cabal +1/−1
- src/Generic/Data.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.8.1.0++- Add `Old` type family mapping newtypes to their underlying type.+ # 0.8.0.0 - Add `GenericProduct`, for deriving `via GenericProduct B` when `B` is not the
generic-data.cabal view
@@ -1,5 +1,5 @@ name: generic-data-version: 0.8.0.0+version: 0.8.1.0 synopsis: Deriving instances with GHC.Generics and related utilities description: Generic implementations of standard type classes.
src/Generic/Data.hs view
@@ -119,6 +119,7 @@ -- * Newtype -- | Generic pack/unpack. , Newtype+ , Old , pack , unpack