traverse-with-class 1.0.1.0 → 1.0.1.1
raw patch · 3 files changed
+12/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES.md +5/−0
- Data/Generics/Traversable/TH.hs +6/−0
- traverse-with-class.cabal +1/−1
CHANGES.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 1.0.1.1+---------------++Update to build with GHC 9+ Version 1.0.1.0 ---------------
Data/Generics/Traversable/TH.hs view
@@ -111,6 +111,12 @@ conA (RecC c xs) = (c, length xs, map (\(_,_,t)->t) xs) conA _ = err "GADTs are not supported yet" +#if MIN_VERSION_template_haskell(2,17,0)+varName :: TyVarBndr flag -> Name+varName (PlainTV n _) = n+varName (KindedTV n _ _) = n+#else varName :: TyVarBndr -> Name varName (PlainTV n) = n varName (KindedTV n _) = n+#endif
traverse-with-class.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: traverse-with-class-version: 1.0.1.0+version: 1.0.1.1 synopsis: Generic applicative traversals description: This is a generic programming library in the spirit of \"Scrap your boilerplate with class\", but with several