hex-text 0.1.0.6 → 0.1.0.7
raw patch · 3 files changed
+4/−16 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog.txt +0/−12
- hex-text.cabal +3/−4
- src/Text/Hex.hs +1/−0
− changelog.txt
@@ -1,12 +0,0 @@-Initial release: version 0.1.0.0, published in 2018.--Version 0.1.0.2, published October 2020:- ★ Adds tighter version bounds- ★ Supports base16-bytestring version 1.0, drops support for earlier versions--Version 0.1.0.4, published March 2021:- ★ Adds support for GHC 9.0- ★ Removes the test suite's dependency on doctest--Version 0.1.0.6, published March 2022:- ★ Adds support for GHC 9.2
hex-text.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: hex-text-version: 0.1.0.6+version: 0.1.0.7 category: Text synopsis: ByteString-Text hexidecimal conversions@@ -23,7 +23,6 @@ extra-source-files: README.md- changelog.txt source-repository head type: git@@ -32,10 +31,10 @@ common base default-language: Haskell2010 build-depends:- base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16+ base ^>= 4.9 || ^>= 4.10 || ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 , base16-bytestring ^>= 1.0 , bytestring ^>= 0.10 || ^>= 0.11- , text ^>= 1.2+ , text ^>= 1.2 || ^>= 2.0 library import: base
src/Text/Hex.hs view
@@ -84,6 +84,7 @@ -- -- Unpacking the ByteString in the following examples allows for -- prettier printing in the REPL.+-- -- >>> (fmap ByteString.unpack . decodeHex . Text.pack) "c0a80102" -- Just [192,168,1,2] --