Skip to content

Commit 951d085

Browse files
committed
Prepare for 0.2.1.0 release
1 parent 0dfbe27 commit 951d085

4 files changed

Lines changed: 10 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Revision history for json-syntax
22

3+
## 0.2.1.0 -- 2022-03-01
4+
5+
* Support Jackson's SMILE format as an encode target.
6+
* Use `bytebuild`'s `rebuild` function for 2x perf improvement on encode.
7+
* Bump bytebuild for buffer overflow fix.
8+
39
## 0.2.0.0 -- 2021-03-22
410

511
* Switch from `Chunks` to `SmallArray` in the `Object` and `Array` data

cabal.project

Lines changed: 0 additions & 11 deletions
This file was deleted.

json-syntax.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: json-syntax
3-
version: 0.2.0.0
3+
version: 0.2.1.0
44
synopsis: High-performance JSON parser and encoder
55
description:
66
This library parses JSON into a @Value@ type that is consistent with the
@@ -33,9 +33,9 @@ library
3333
, array-builder >=0.1 && <0.2
3434
, array-chunks >=0.1.3 && <0.2
3535
, base >=4.12 && <5
36-
, bytebuild >=0.3.9 && <0.4
36+
, bytebuild >=0.3.10 && <0.4
3737
, byteslice >=0.1.3 && <0.3
38-
, bytesmith >=0.3.2 && <0.4
38+
, bytesmith >=0.3.8 && <0.4
3939
, bytestring >=0.10.8 && <0.11
4040
, integer-gmp >=1.0 && <1.1
4141
, natural-arithmetic >=0.1.2 && <0.2

src/Json/Smile.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import Data.Bits (countLeadingZeros,complement,unsafeShiftR,(.&.),(.|.))
2727
import Data.Bits (testBit)
2828
import Data.Bytes.Builder (Builder)
2929
import Data.Int (Int32)
30-
import Data.Primitive (ByteArray(ByteArray),newByteArray)
30+
import Data.Primitive (ByteArray,newByteArray)
3131
import Data.Primitive (writeByteArray,byteArrayFromListN,sizeofByteArray)
3232
import Data.Primitive (MutableByteArray(..),unsafeFreezeByteArray)
3333
import Data.Primitive (readByteArray,copyMutableByteArray)

0 commit comments

Comments
 (0)