th-abstraction 0.1.2.0 → 0.1.2.1
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- src/Language/Haskell/TH/Datatype.hs +1/−1
- th-abstraction.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for th-abstraction +## 0.1.2.1 -- 2017-05-21++* Add eta reduction fixes to GHC 7.6+ ## 0.1.2.0 -- 2017-05-21 * Added `arrowKCompat`
src/Language/Haskell/TH/Datatype.hs view
@@ -170,7 +170,7 @@ where p info = con `elem` map constructorName (datatypeCons info) -#if (!MIN_VERSION_template_haskell(2,10,0)) && MIN_VERSION_template_haskell(2,9,0)+#if MIN_VERSION_template_haskell(2,8,0) && (!MIN_VERSION_template_haskell(2,10,0)) kindPart (KindedTV _ k) = [k] kindPart (PlainTV _ ) = []
th-abstraction.cabal view
@@ -1,5 +1,5 @@ name: th-abstraction-version: 0.1.2.0+version: 0.1.2.1 synopsis: Nicer interface for reified information about data types description: This package normalizes variations in the interface for inspecting datatype information via Template Haskell