packages feed

bytestring 0.9.2.0 → 0.9.2.1

raw patch · 7 files changed

+17/−2 lines, 7 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Data/ByteString.hs view
@@ -4,6 +4,9 @@ {- LANGUAGE MagicHash, UnboxedTuples,             NamedFieldPuns, BangPatterns, RecordWildCards -} {-# OPTIONS_HADDOCK prune #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Trustworthy #-}+#endif  -- | -- Module      : Data.ByteString
Data/ByteString/Char8.hs view
@@ -3,6 +3,9 @@ -- If we could, these are what they would be: {- LANGUAGE MagicHash, UnboxedTuples -} {-# OPTIONS_HADDOCK prune #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Trustworthy #-}+#endif  -- | -- Module      : Data.ByteString.Char8
Data/ByteString/Fusion.hs view
@@ -1,4 +1,7 @@ {-# OPTIONS_HADDOCK hide #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Safe #-}+#endif -- | -- Module      : Data.ByteString.Fusion -- License     : BSD-style
Data/ByteString/Internal.hs view
@@ -68,7 +68,7 @@ import Foreign.ForeignPtr       (ForeignPtr, withForeignPtr) import Foreign.Ptr              (Ptr, FunPtr, plusPtr) import Foreign.Storable         (Storable(..))-import Foreign.C.Types          (CInt, CSize, CULong)+import Foreign.C.Types          (CInt(..), CSize(..), CULong(..)) import Foreign.C.String         (CString)  #ifndef __NHC__
Data/ByteString/Lazy.hs view
@@ -1,6 +1,9 @@ {-# LANGUAGE CPP #-} {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-} {-# OPTIONS_HADDOCK prune #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Trustworthy #-}+#endif  -- | -- Module      : Data.ByteString.Lazy
Data/ByteString/Lazy/Char8.hs view
@@ -1,5 +1,8 @@ {-# LANGUAGE CPP #-} {-# OPTIONS_HADDOCK prune #-}+#if __GLASGOW_HASKELL__ >= 701+{-# LANGUAGE Trustworthy #-}+#endif  -- | -- Module      : Data.ByteString.Lazy.Char8
bytestring.cabal view
@@ -1,5 +1,5 @@ Name:                bytestring-Version:             0.9.2.0+Version:             0.9.2.1 Synopsis:            Fast, packed, strict and lazy byte arrays with a list interface Description:     A time and space-efficient implementation of byte vectors using