haskell2010 1.1.0.1 → 1.1.1.0
raw patch · 3 files changed
+9/−3 lines, 3 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Data.Bits: class (Eq a, Num a) => Bits a
+ Data.Bits: class Eq a => Bits a
Files
- Foreign/Marshal/Error.hs +7/−1
- System/IO/Error.hs +1/−1
- haskell2010.cabal +1/−1
Foreign/Marshal/Error.hs view
@@ -17,4 +17,10 @@ void -- IO a -> IO () ) where-import "base" Foreign.Marshal.Error+import "base" Foreign.Marshal.Error hiding (void)++-- |Discard the return value of an 'IO' action+--+void :: IO a -> IO ()+void act = act >> return ()+ -- base's version is deprecated
System/IO/Error.hs view
@@ -53,7 +53,7 @@ ) where import qualified "base" Control.Exception as Exception-import "base" System.IO.Error hiding (IOError,catch,try)+import "base" System.IO.Error hiding (IOError) import qualified "base" System.IO.Error as Base import Prelude hiding (IOError,catch)
haskell2010.cabal view
@@ -1,5 +1,5 @@ name: haskell2010-version: 1.1.0.1+version: 1.1.1.0 license: BSD3 license-file: LICENSE maintainer: libraries@haskell.org