Update to v0.0.3.
This commit is contained in:
parent
dd10913840
commit
c81784cc01
5 changed files with 12 additions and 4 deletions
|
@ -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" ]
|
||||
|
|
|
@ -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**:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
//!
|
||||
//! ```toml
|
||||
//! [dependencies]
|
||||
//! saphyr-parser = "0.0.2"
|
||||
//! saphyr-parser = "0.0.3"
|
||||
//! ```
|
||||
//!
|
||||
//! # Features
|
||||
|
|
|
@ -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**:
|
||||
|
|
Loading…
Reference in a new issue