packages feed

compactable 0.1.2.2 → 0.1.2.3

raw patch · 1 files changed

+13/−8 lines, 1 filesdep ~basedep ~bifunctorsdep ~containersPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, bifunctors, containers

API changes (from Hackage documentation)

- Control.Compactable: instance (GHC.Base.Alternative a, GHC.Base.Monad a) => Control.Compactable.CompactFold (Data.Monoid.Alt a)
- Control.Compactable: instance Control.Compactable.CompactFold GHC.Base.Maybe
- Control.Compactable: instance Control.Compactable.Compactable GHC.Base.Maybe
- Control.Compactable: instance GHC.Base.Alternative f => Data.Semigroup.Semigroup (Control.Compactable.AltSum f a)
- Control.Compactable: instance GHC.Base.Functor a => Control.Compactable.Compactable (Data.Monoid.Alt a)
+ Control.Compactable: instance (GHC.Base.Alternative a, GHC.Base.Monad a) => Control.Compactable.CompactFold (Data.Semigroup.Internal.Alt a)
+ Control.Compactable: instance Control.Compactable.CompactFold GHC.Maybe.Maybe
+ Control.Compactable: instance Control.Compactable.Compactable GHC.Maybe.Maybe
+ Control.Compactable: instance GHC.Base.Alternative f => GHC.Base.Semigroup (Control.Compactable.AltSum f a)
+ Control.Compactable: instance GHC.Base.Functor a => Control.Compactable.Compactable (Data.Semigroup.Internal.Alt a)

Files

compactable.cabal view
@@ -1,5 +1,5 @@ name:                compactable-version:             0.1.2.2+version:             0.1.2.3 synopsis:            A typeclass for structures which can be catMaybed, filtered, and partitioned. description:         This provides polymorphic implementations for filter, compact (catMaybes), and separate. It allows for higher performance implementations to be used in place of defaults for all data structures, and endeavors to centerally document those implementations. Compactable aims to be as general and unconstrained as possible, providing instances for non-Functors like Set, as well as some Contravariants (though not published here). Compactable fully subsumes Data.Witherable, offers more laws, and is more general. license:             BSD3@@ -11,7 +11,7 @@ build-type:          Simple extra-source-files:  ChangeLog.md cabal-version:       >=1.10-tested-with:         GHC == 8.4.1, GHC == 8.2.2, GHC == 8.0.2+tested-with:         GHC == 8.6.1, GHC == 8.4.4, GHC == 8.2.2, GHC == 8.0.2  source-repository head   type: git@@ -19,14 +19,19 @@  library   exposed-modules:     Control.Compactable-  -- other-modules:-  -- other-extensions:-  ghc-options: -Wall-  build-depends:       base         >= 4.9    && < 4.12-                     , containers   >= 0.5.7  && < 0.6++  ghc-options:         -Wall+                       -Wincomplete-record-updates+                       -Wincomplete-uni-patterns+                       -Wredundant-constraints++  build-depends:       base         >= 4.9    && < 4.13+                     , containers   >= 0.5.7  && < 0.7                      , transformers >= 0.5.2  && < 0.6                      , vector       >= 0.11   && < 0.13-                     , bifunctors   >= 5.4.2  && < 5.6++  if impl(ghc < 8.2.2)+    build-depends: bifunctors >= 5.4    hs-source-dirs:      src   default-language:    Haskell2010