explicit-iomodes-text 0.1.0.3 → 0.1.0.4
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~textPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: text
API changes (from Hackage documentation)
- Data.Text.IO.ExplicitIOModes: hGetContents :: (ReadModes ioMode) => Handle ioMode -> IO Text
+ Data.Text.IO.ExplicitIOModes: hGetContents :: ReadModes ioMode => Handle ioMode -> IO Text
- Data.Text.IO.ExplicitIOModes: hGetLine :: (ReadModes ioMode) => Handle ioMode -> IO Text
+ Data.Text.IO.ExplicitIOModes: hGetLine :: ReadModes ioMode => Handle ioMode -> IO Text
- Data.Text.IO.ExplicitIOModes: hPutStr :: (WriteModes ioMode) => Handle ioMode -> Text -> IO ()
+ Data.Text.IO.ExplicitIOModes: hPutStr :: WriteModes ioMode => Handle ioMode -> Text -> IO ()
- Data.Text.IO.ExplicitIOModes: hPutStrLn :: (WriteModes ioMode) => Handle ioMode -> Text -> IO ()
+ Data.Text.IO.ExplicitIOModes: hPutStrLn :: WriteModes ioMode => Handle ioMode -> Text -> IO ()
- Data.Text.Lazy.IO.ExplicitIOModes: hGetContents :: (ReadModes ioMode) => Handle ioMode -> IO Text
+ Data.Text.Lazy.IO.ExplicitIOModes: hGetContents :: ReadModes ioMode => Handle ioMode -> IO Text
- Data.Text.Lazy.IO.ExplicitIOModes: hGetLine :: (ReadModes ioMode) => Handle ioMode -> IO Text
+ Data.Text.Lazy.IO.ExplicitIOModes: hGetLine :: ReadModes ioMode => Handle ioMode -> IO Text
- Data.Text.Lazy.IO.ExplicitIOModes: hPutStr :: (WriteModes ioMode) => Handle ioMode -> Text -> IO ()
+ Data.Text.Lazy.IO.ExplicitIOModes: hPutStr :: WriteModes ioMode => Handle ioMode -> Text -> IO ()
- Data.Text.Lazy.IO.ExplicitIOModes: hPutStrLn :: (WriteModes ioMode) => Handle ioMode -> Text -> IO ()
+ Data.Text.Lazy.IO.ExplicitIOModes: hPutStrLn :: WriteModes ioMode => Handle ioMode -> Text -> IO ()
Files
explicit-iomodes-text.cabal view
@@ -1,5 +1,5 @@ name: explicit-iomodes-text-version: 0.1.0.3+version: 0.1.0.4 cabal-version: >=1.6 build-type: Simple license: BSD3@@ -19,7 +19,7 @@ Library GHC-Options: -Wall build-depends: base >= 4 && < 4.4- , text >= 0.7 && < 0.10+ , text >= 0.7 && < 0.11 , explicit-iomodes >= 0.4 && < 0.7 exposed-modules: Data.Text.IO.ExplicitIOModes Data.Text.Lazy.IO.ExplicitIOModes