text 0.11.1.6 → 0.11.1.7
raw patch · 2 files changed
+5/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Text/Array.hs +4/−0
- text.cabal +1/−3
Data/Text/Array.hs view
@@ -64,7 +64,11 @@ import Data.Bits ((.&.), xor) import Data.Text.Unsafe.Base (inlinePerformIO) import Data.Text.UnsafeShift (shiftL, shiftR)+#if __GLASGOW_HASKELL__ >= 703+import Foreign.C.Types (CInt(CInt), CSize(CSize))+#else import Foreign.C.Types (CInt, CSize)+#endif import GHC.Base (ByteArray#, MutableByteArray#, Int(..), indexWord16Array#, newByteArray#, unsafeCoerce#, writeWord16Array#)
text.cabal view
@@ -1,5 +1,5 @@ name: text-version: 0.11.1.6+version: 0.11.1.7 homepage: https://github.com/bos/text bug-reports: https://github.com/bos/text/issues synopsis: An efficient packed Unicode text type.@@ -35,8 +35,6 @@ license-file: LICENSE author: Bryan O'Sullivan <bos@serpentine.com> maintainer: Bryan O'Sullivan <bos@serpentine.com>- Tom Harper <rtomharper@googlemail.com>- Duncan Coutts <duncan@haskell.org> copyright: 2009-2011 Bryan O'Sullivan, 2008-2009 Tom Harper category: Data, Text build-type: Simple