packages feed

hex 0.1 → 0.1.1

raw patch · 2 files changed

+3/−3 lines, 2 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.Hex: c :: (Monad m) => Char -> m Int
- Data.Hex: hex :: (Hex t) => t -> t
+ Data.Hex: hex :: Hex t => t -> t

Files

Data/Hex.hs view
@@ -11,7 +11,7 @@ -- Convert strings into hexadecimal and back. -- ------------------------------------------------------------------------------module Data.Hex where+module Data.Hex(Hex(..)) where  import Control.Monad import qualified Data.ByteString.Char8 as B
hex.cabal view
@@ -1,5 +1,5 @@ Name:                hex-Version:             0.1+Version:             0.1.1 Synopsis:            Convert strings into hexadecimal and back. Description:         Convert strings into hexadecimal and back. License:             BSD3@@ -8,7 +8,7 @@ Author:              Taru Karttunen Category:            Data Maintainer:          taruti@taruti.net-Build-Depends:       base>3, bytestring+Build-Depends:       base >= 3 && < 5, bytestring Exposed-modules:     Data.Hex Extensions:          TypeSynonymInstances GHC-Options:         -Wall