base-prelude 0.1.21 → 0.2
raw patch · 2 files changed
+6/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- base-prelude.cabal +1/−1
- library/BasePrelude.hs +5/−1
base-prelude.cabal view
@@ -1,7 +1,7 @@ name: base-prelude version:- 0.1.21+ 0.2 synopsis: The most complete prelude formed from only the "base" package description:
library/BasePrelude.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} -- | -- This module reexports most of the definitions from the \"base\" package, -- which are meant to be imported unqualified.@@ -28,13 +29,16 @@ ------------------------- import Control.Applicative as Exports-import Control.Arrow as Exports+import Control.Arrow as Exports hiding (first, second) import Control.Category as Exports import Control.Concurrent as Exports import Control.Exception as Exports import Control.Monad as Exports hiding (mapM_, sequence_, forM_, msum, mapM, sequence, forM) import Control.Monad.Fix as Exports hiding (fix) import Control.Monad.ST as Exports+#if MIN_VERSION_base(4,8,0)+import Data.Bifunctor as Exports+#endif import Data.Bits as Exports import Data.Bool as Exports hiding (bool) import Data.Char as Exports