Skip to content

Commit 52899c9

Browse files
committed
Releases v0.2.0
1 parent cf5c8dd commit 52899c9

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

CHANGELOG.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,41 @@
1+
## [0.2.0] - 2024-02-23
2+
3+
No change compared to the alpha releases.
4+
15
## [0.2.0-alpha.2] - 2023-11-13
26

37
## Changed
8+
49
- Improves error messages.
510
- Improves ordering of tokens and errors when errors are present.
611
- Fixes file position in case of errors.
712

8-
913
## [0.2.0-alpha.1] - 2023-09-23
1014

1115
### Added
16+
1217
- Support of UTF-8 byte-order-mark (BOM) during parsing.
1318
- Support of Tokio `AsyncRead` and `AsyncWrite` interfaces behind the `async-tokio` feature.
1419

1520
## Changed
16-
- The parser API has been rewritten. The new entry points are `FromBufferJsonReader`, `FromReadJsonReader`, and `LowLevelJsonReader`.
21+
22+
- The parser API has been rewritten. The new entry points are `FromBufferJsonReader`, `FromReadJsonReader`,
23+
and `LowLevelJsonReader`.
1724
- The serializer API has been rewritten. The new entry points are `ToWriteJsonWriter` and `LowLevelJsonWriter`.
1825
- The parser now returns `ParseError` and `SyntaxError` types instead of `std::io::Error`.
1926
- Escaped unicode surrogate pairs are now carefully validated.
2027
- Minimal supported Rust version has been bumped to 1.70.
2128

22-
2329
## [0.1.1] - 2021-07-27
2430

2531
### Added
32+
2633
- Support for encoded UTF-16 surrogate pairs like `"\ud83d\udd25"`.
2734
The parser now complies with all [JSONTestSuite](https://github.com/nst/JSONTestSuite) positive and negative tests.
2835

29-
3036
## [0.1.0] - 2021-05-30
3137

3238
### Added
39+
3340
- JSON streaming parser.
3441
- JSON streaming serializer.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json-event-parser"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0"
44
authors = ["Tpt <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)