From 93d3429fe73317c20d2133300348d43ba9457222 Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Mon, 20 Jan 2020 18:54:43 -0500 Subject: [PATCH] Prepare for 0.3.2.0 release --- CHANGELOG.md | 2 +- small-bytearray-builder.cabal | 4 ++-- test/Main.hs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba5bb20..56db732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # 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 array over and over. diff --git a/small-bytearray-builder.cabal b/small-bytearray-builder.cabal index 01bb15f..aba63e2 100644 --- a/small-bytearray-builder.cabal +++ b/small-bytearray-builder.cabal @@ -19,8 +19,8 @@ description: of the next chunk. This strategy for building is suitable for most CSVs and several line protocols (carbon, InfluxDB, etc.). -homepage: https://github.com/andrewthad/small-bytearray-builder -bug-reports: https://github.com/andrewthad/small-bytearray-builder/issues +homepage: https://github.com/byteverse/small-bytearray-builder +bug-reports: https://github.com/byteverse/small-bytearray-builder/issues license: BSD-3-Clause license-file: LICENSE author: Andrew Martin diff --git a/test/Main.hs b/test/Main.hs index 79bf221..a8dbd04 100644 --- a/test/Main.hs +++ b/test/Main.hs @@ -263,7 +263,7 @@ showWord16PaddedLowerHex :: Word16 -> String showWord16PaddedLowerHex = printf "%04x" runConcat :: Int -> Builder -> ByteArray -runConcat n = Chunks.concat . run n +runConcat n = Chunks.concatU . run n c2w :: Char -> Word8 c2w = fromIntegral . ord