packages feed

utf8-light 0.4.3.1 → 0.4.4.0

raw patch · 3 files changed

+6/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Codec.Binary.UTF8.Light: c2w :: Char -> Word32
+ Codec.Binary.UTF8.Light: w2c :: Word32 -> Char

Files

NEWS view
@@ -1,3 +1,6 @@+Release 0.4.4.0:+- Exported `w2c`, `c2w` again.+ Release 0.4.3.1: - Removed Helper module from API. - Added tested-with field, this library has been tested for GHC 9.0.2 and
src/Codec/Binary/UTF8/Light.hs view
@@ -40,6 +40,7 @@   , fromBits   , Int8,Int16,Int32   , Word,Word8,Word16,Word32+  , c2w, w2c ) where  import Data.Bits@@ -51,7 +52,7 @@ import qualified Data.ByteString.Internal as B import Data.ByteString.Unsafe import System.IO(Handle)-import Codec.Binary.UTF8.Light.Helper (c2w, w2c, i2w, w2i, cwrd, wh, toW8)+import Codec.Binary.UTF8.Light.Helper (c2w, w2c, cwrd, wh, toW8)  #if defined(__GLASGOW_HASKELL__) import GHC.Exts
utf8-light.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0
 name:               utf8-light
-version:            0.4.3.1
+version:            0.4.4.0
 build-type:         Simple
 license:            BSD-3-Clause
 license-file:       LICENSE