packages feed

witch 1.1.5.0 → 1.1.6.0

raw patch · 2 files changed

+10/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Witch: type ISO_8859_1 = Tagged "ISO-8859-1"
+ Witch: type UTF_16BE = Tagged "UTF-16BE"
+ Witch: type UTF_16LE = Tagged "UTF-16LE"
+ Witch: type UTF_32BE = Tagged "UTF-32BE"
+ Witch: type UTF_32LE = Tagged "UTF-32LE"
+ Witch: type UTF_8 = Tagged "UTF-8"

Files

source/library/Witch.hs view
@@ -25,6 +25,14 @@     -- * Data types     Witch.TryFromException.TryFromException (..), +    -- ** Encodings+    Witch.Encoding.ISO_8859_1,+    Witch.Encoding.UTF_8,+    Witch.Encoding.UTF_16LE,+    Witch.Encoding.UTF_16BE,+    Witch.Encoding.UTF_32LE,+    Witch.Encoding.UTF_32BE,+     -- * Utilities     Witch.Utility.as,     Witch.Utility.over,@@ -263,6 +271,7 @@   ) where +import qualified Witch.Encoding import qualified Witch.From import Witch.Instances () import qualified Witch.Lift
witch.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2  name: witch-version: 1.1.5.0+version: 1.1.6.0 synopsis: Convert values from one type into another. description: Witch converts values from one type into another.