packages feed

Boolean 0.2.2 → 0.2.3

raw patch · 3 files changed

+8/−1 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Boolean.cabal view
@@ -1,5 +1,5 @@ Name:                Boolean-Version:             0.2.2+Version:             0.2.3 Synopsis:            Generalized booleans and numbers Category:            Data Cabal-Version:       >= 1.6
src/Data/Boolean.hs view
@@ -40,6 +40,9 @@   , guardedB, caseB   ) where +#if MIN_VERSION_base(4,8,0)+import Prelude hiding ((<*))+#endif import Data.Monoid (Monoid,mempty) import Control.Applicative (Applicative(pure),liftA2,liftA3) 
src/Data/Boolean/Overload.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} {-# OPTIONS_GHC -Wall #-}  ----------------------------------------------------------------------@@ -32,6 +33,9 @@     (==), (/=),      (<), (>), (<=), (>=),     min, max+#if MIN_VERSION_base(4,8,0)+    , (<*)+#endif   )  (&&) :: Boolean a => a -> a -> a