Update to v0.0.3.

This commit is contained in:
Ethiraric 2024-10-24 18:38:46 +02:00
parent dd10913840
commit c81784cc01
5 changed files with 12 additions and 4 deletions

View file

@ -18,7 +18,7 @@ authors = [
"David Aguilar <davvid@gmail.com>",
"Yuheng Chen <yuhengchen@sensetime.com>"
]
version = "0.0.2"
version = "0.0.3"
documentation = "https://docs.rs/saphyr"
keywords = [ "yaml", "parser" ]
categories = [ "encoding", "parser-implementations" ]

View file

@ -2,6 +2,8 @@
## Upcoming
## v0.0.3
**Breaking Changes**:
- 926fdfb: Events now use spans rather than markers, allowing for tracking both
@ -26,7 +28,7 @@
characters.
- 95fe3fe: Fix parse errors when `---` appeared in the middle of plain scalars.
- 3358629: Fix infinite loop with `...` in plain scalars in flow contexts.
- Fix panics on other various erroneous inputs found while fuzzing
- Fix panics on other various erroneous inputs found while fuzzing.
**Internal changes**:

View file

@ -19,7 +19,7 @@ Add the following to your Cargo.toml:
```toml
[dependencies]
saphyr-parser = "0.0.2"
saphyr-parser = "0.0.3"
```
or use `cargo add` to get the latest version automatically:
```sh

View file

@ -17,7 +17,7 @@
//!
//! ```toml
//! [dependencies]
//! saphyr-parser = "0.0.2"
//! saphyr-parser = "0.0.3"
//! ```
//!
//! # Features

View file

@ -2,6 +2,11 @@
## Upcoming
## v0.0.3
Skipping version `v0.0.2` to align this crate's version with that of
`saphyr-parser`.
**Breaking Changes**:
- Move `load_from_*` methods out of the `YamlLoader`. Now, `YamlLoader` gained
@ -44,6 +49,7 @@
- 1fc4692: Fix trailing newlines when emitting multiline strings.
# Older `yaml-rust2` changelgos
## v0.8.0
**Breaking Changes**: