packages feed

unfoldable 0.9.4 → 0.9.5

raw patch · 2 files changed

+6/−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: instance Data.Unfoldable.Unfoldable Data.Sequence.Seq
- Data.Unfolder: instance Data.Unfolder.Unfolder Data.Sequence.Seq
+ Data.Unfoldable: instance Data.Unfoldable.Unfoldable Data.Sequence.Internal.Seq
+ Data.Unfolder: instance Data.Unfolder.Unfolder Data.Sequence.Internal.Seq
- Data.Unfoldable: class Unfoldable t where unfold = choose . getCompose . createA1 @Unfoldable (Compose . return . unfold . foldr (<|>) empty . getCompose) . Compose . return
+ Data.Unfoldable: class Unfoldable t
- Data.Unfolder: class Alternative f => Unfolder f where choose = chooseMap id chooseMap f = foldr ((<|>) . f) empty chooseInt n = chooseMap pure [0 .. n - 1]
+ Data.Unfolder: class Alternative f => Unfolder f

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+0.9.5+-----+* updated to `QuickCheck` 2.11+ 0.9.4 ----- * updated to `QuickCheck` 2.10
unfoldable.cabal view
@@ -1,5 +1,5 @@ Name:                 unfoldable-Version:              0.9.4+Version:              0.9.5 Synopsis:             Class of data structures that can be unfolded. Description:          Just as there's a Foldable class, there should also be an Unfoldable class.                       .@@ -40,7 +40,7 @@     , containers   >= 0.5 && < 0.6     , transformers >= 0.4 && < 0.6     , random       >= 1.0 && < 1.2-    , QuickCheck   >= 2.7.3 && < 2.11+    , QuickCheck   >= 2.7.3 && < 2.12    if impl(ghc >= 7.6)     cpp-options:   -DGENERICS