Skip to content

Commit 88c74b8

Browse files
committed
Releases v0.2.0-alpha.1
1 parent ea7c75b commit 88c74b8

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [0.2.0-alpha.1] - 2023-09-23
2+
3+
### Added
4+
- Support of UTF-8 byte-order-mark (BOM) during parsing.
5+
- Support of Tokio `AsyncRead` and `AsyncWrite` interfaces behind the `async-tokio` feature.
6+
7+
## Changed
8+
- The parser API has been rewritten. The new entry points are `FromBufferJsonReader`, `FromReadJsonReader`, and `LowLevelJsonReader`.
9+
- The serializer API has been rewritten. The new entry points are `ToWriteJsonWriter` and `LowLevelJsonWriter`.
10+
- The parser now returns `ParseError` and `SyntaxError` types instead of `std::io::Error`.
11+
- Escaped unicode surrogate pairs are now carefully validated.
12+
- Minimal supported Rust version has been bumped to 1.70.
13+
14+
115
## [0.1.1] - 2021-07-27
216

317
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1-dev"
3+
version = "0.2.0-alpha.1"
44
authors = ["Tpt <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![doc = include_str!("../README.md")]
2+
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
23
#![deny(
34
future_incompatible,
45
nonstandard_style,

0 commit comments

Comments
 (0)