packages feed

composition-prelude 1.1.0.1 → 1.1.0.2

raw patch · 2 files changed

+4/−2 lines, 2 filesdep ~basePVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

+ Control.Composition: bool :: () => a -> a -> Bool -> a

Files

composition-prelude.cabal view
@@ -1,5 +1,5 @@ name:                composition-prelude-version:             1.1.0.1+version:             1.1.0.2 synopsis:            Higher-order function combinators description:         Replacement for `composition` or `composition-exta`, exporting everything in one sane module. homepage:            https://github.com/vmchale/composition-prelude#readme@@ -24,7 +24,7 @@ library   hs-source-dirs:      src   exposed-modules:     Control.Composition-  build-depends:       base >= 4.5 && < 5+  build-depends:       base >= 4.7 && < 5   default-language:    Haskell2010   if flag(development)     ghc-options: -Werror
src/Control/Composition.hs view
@@ -39,10 +39,12 @@     , fix     , on     , ap+    , bool     ) where  import           Control.Arrow (first, second, (&&&), (***)) import           Control.Monad+import           Data.Bool     (bool) #if __GLASGOW_HASKELL__ > 784 import           Data.Function (fix, on, (&)) #else