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

View file

@ -2,6 +2,8 @@
## Upcoming ## Upcoming
## v0.0.3
**Breaking Changes**: **Breaking Changes**:
- 926fdfb: Events now use spans rather than markers, allowing for tracking both - 926fdfb: Events now use spans rather than markers, allowing for tracking both
@ -26,7 +28,7 @@
characters. characters.
- 95fe3fe: Fix parse errors when `---` appeared in the middle of plain scalars. - 95fe3fe: Fix parse errors when `---` appeared in the middle of plain scalars.
- 3358629: Fix infinite loop with `...` in plain scalars in flow contexts. - 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**: **Internal changes**:

View file

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

View file

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

View file

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