Skip to content

Commit

Permalink
Prepare for 0.3.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewthad committed Mar 1, 2022
1 parent ed7a6c2 commit da17c6a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ Note: Prior to version 0.3.4.0, this library was named
`small-bytearray-builder` is now just a compatibility shim
to ease the migration process.

## 0.3.10.0 -- 2022-03-01

* Add upper bound on base since this does not build with GHC 9.2.
* Add `rebuild`
* Add `copyCons` for copying small byte sequences with extra byte in front
* Use `zigzag` library from hackage
* Seven eights encoding
* Finish out LEB for 32-bit and signed 32/64

## 0.3.9.0 -- 2021-11-19

* Add `cstring#`
Expand Down
6 changes: 3 additions & 3 deletions bytebuild.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: bytebuild
version: 0.3.9.0
version: 0.3.10.0
synopsis: Serialize to a small byte arrays
description:
This is similar to the builder facilities provided by
Expand Down Expand Up @@ -46,9 +46,9 @@ library
reexported-modules:
Data.Bytes.Chunks
build-depends:
, base >=4.12.0.0 && <5
, base >=4.12.0.0 && <4.16
, byteslice >=0.2.6 && <0.3
, bytestring >=0.10.8.2 && <0.11
, bytestring >=0.10.8.2 && <0.12
, haskell-src-meta >=0.8
, integer-logarithms >=1.0.3 && <1.1
, natural-arithmetic >=0.1 && <0.2
Expand Down

0 comments on commit da17c6a

Please sign in to comment.