unfoldable 0.8.3 → 0.8.4
raw patch · 2 files changed
+14/−2 lines, 2 filesdep ~QuickCheckPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
- Data.Unfoldable: unfold :: (Unfoldable t, Unfolder f) => f a -> f (t a)
+ Data.Unfoldable: unfold :: (Unfoldable t, Generic1 t, GUnfold (Rep1 t), Unfolder f) => f a -> f (t a)
Files
- CHANGELOG.md +12/−0
- unfoldable.cabal +2/−2
CHANGELOG.md view
@@ -1,3 +1,15 @@+0.8.4+-----+* updated to `QuickCheck` 2.9++0.8.3+-----+* updated to `transformers` 0.5++0.8.2+-----+* updated to `QuickCheck` 2.8+ 0.8.1 ----- * added changelog
unfoldable.cabal view
@@ -1,5 +1,5 @@ Name: unfoldable-Version: 0.8.3+Version: 0.8.4 Synopsis: Class of data structures that can be unfolded. Description: Just as there's a Foldable class, there should also be an Unfoldable class. .@@ -39,7 +39,7 @@ base >= 4 && < 5 , transformers >= 0.4 && < 0.6 , random >= 1.0 && < 1.2- , QuickCheck >= 2.7.3 && < 2.9+ , QuickCheck >= 2.7.3 && < 2.10 if impl(ghc >= 7.6) cpp-options: -DGENERICS