Prepare for 0.3.2.0 release
This commit is contained in:
parent
71fa47a8ee
commit
93d3429fe7
3 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Revision history for small-bytearray-builder
|
# Revision history for small-bytearray-builder
|
||||||
|
|
||||||
## 0.3.2.0 -- 2019-??-??
|
## 0.3.2.0 -- 2020-01-20
|
||||||
|
|
||||||
* Add `putMany`, which allows pasting into the same mutable byte
|
* Add `putMany`, which allows pasting into the same mutable byte
|
||||||
array over and over.
|
array over and over.
|
||||||
|
|
|
@ -19,8 +19,8 @@ description:
|
||||||
of the next chunk. This strategy for building is suitable for most
|
of the next chunk. This strategy for building is suitable for most
|
||||||
CSVs and several line protocols (carbon, InfluxDB, etc.).
|
CSVs and several line protocols (carbon, InfluxDB, etc.).
|
||||||
|
|
||||||
homepage: https://github.com/andrewthad/small-bytearray-builder
|
homepage: https://github.com/byteverse/small-bytearray-builder
|
||||||
bug-reports: https://github.com/andrewthad/small-bytearray-builder/issues
|
bug-reports: https://github.com/byteverse/small-bytearray-builder/issues
|
||||||
license: BSD-3-Clause
|
license: BSD-3-Clause
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Andrew Martin
|
author: Andrew Martin
|
||||||
|
|
|
@ -263,7 +263,7 @@ showWord16PaddedLowerHex :: Word16 -> String
|
||||||
showWord16PaddedLowerHex = printf "%04x"
|
showWord16PaddedLowerHex = printf "%04x"
|
||||||
|
|
||||||
runConcat :: Int -> Builder -> ByteArray
|
runConcat :: Int -> Builder -> ByteArray
|
||||||
runConcat n = Chunks.concat . run n
|
runConcat n = Chunks.concatU . run n
|
||||||
|
|
||||||
c2w :: Char -> Word8
|
c2w :: Char -> Word8
|
||||||
c2w = fromIntegral . ord
|
c2w = fromIntegral . ord
|
||||||
|
|
Loading…
Reference in a new issue