bytestring-show 0.3.3 → 0.3.4
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~containersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: containers
API changes (from Hackage documentation)
- Text.Show.ByteString: instance (Show a) => Show (Maybe a)
- Text.Show.ByteString: instance (Show a) => Show [a]
- Text.Show.ByteString: instance (Show e) => Show (Set e)
+ Text.Show.ByteString: instance Show a => Show (Maybe a)
+ Text.Show.ByteString: instance Show a => Show [a]
+ Text.Show.ByteString: instance Show e => Show (Set e)
- Text.Show.ByteString: print :: (Show a) => a -> IO ()
+ Text.Show.ByteString: print :: Show a => a -> IO ()
- Text.Show.ByteString: show :: (Show a) => a -> ByteString
+ Text.Show.ByteString: show :: Show a => a -> ByteString
- Text.Show.ByteString: showp :: (Show a) => a -> Put
+ Text.Show.ByteString: showp :: Show a => a -> Put
- Text.Show.ByteString: showpEFloat :: (RealFloat a) => Maybe Int -> a -> Put
+ Text.Show.ByteString: showpEFloat :: RealFloat a => Maybe Int -> a -> Put
- Text.Show.ByteString: showpFFloat :: (RealFloat a) => Maybe Int -> a -> Put
+ Text.Show.ByteString: showpFFloat :: RealFloat a => Maybe Int -> a -> Put
- Text.Show.ByteString: showpGFloat :: (RealFloat a) => Maybe Int -> a -> Put
+ Text.Show.ByteString: showpGFloat :: RealFloat a => Maybe Int -> a -> Put
- Text.Show.ByteString: showpIntAtBase :: (Integral a) => a -> (Int -> Char) -> a -> Put
+ Text.Show.ByteString: showpIntAtBase :: Integral a => a -> (Int -> Char) -> a -> Put
- Text.Show.ByteString: showpList :: (Show a) => [a] -> Put
+ Text.Show.ByteString: showpList :: Show a => [a] -> Put
- Text.Show.ByteString: showpPrec :: (Show a) => Int -> a -> Put
+ Text.Show.ByteString: showpPrec :: Show a => Int -> a -> Put
Files
- bytestring-show.cabal +2/−2
bytestring-show.cabal view
@@ -1,5 +1,5 @@ name: bytestring-show-version: 0.3.3+version: 0.3.4 license: BSD3 license-file: LICENSE author: Dan Doel@@ -12,7 +12,7 @@ cabal-version: >= 1.2.3 library- build-depends: base < 5, binary < 0.6, bytestring >= 0.9 && <= 1, array < 0.4, containers < 0.4+ build-depends: base < 5, binary < 0.6, bytestring >= 0.9 && <= 1, array < 0.4, containers < 0.5 exposed-modules: Text.Show.ByteString