Prepare for 0.3.10.0 release
This commit is contained in:
parent
ed7a6c283c
commit
da17c6ab85
2 changed files with 12 additions and 3 deletions
|
@ -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#`
|
||||
|
|
|
@ -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
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue