diff --git a/Cargo.toml b/Cargo.toml index 5ada1fe..5cbf5dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ authors = [ "David Aguilar ", "Yuheng Chen " ] -version = "0.0.2" +version = "0.0.3" documentation = "https://docs.rs/saphyr" keywords = [ "yaml", "parser" ] categories = [ "encoding", "parser-implementations" ] diff --git a/parser/CHANGELOG.md b/parser/CHANGELOG.md index 4ee897d..bd52a76 100644 --- a/parser/CHANGELOG.md +++ b/parser/CHANGELOG.md @@ -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**: diff --git a/parser/README.md b/parser/README.md index 6e317a6..d950d3c 100644 --- a/parser/README.md +++ b/parser/README.md @@ -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 diff --git a/parser/src/lib.rs b/parser/src/lib.rs index 6ad94d1..5f1f997 100644 --- a/parser/src/lib.rs +++ b/parser/src/lib.rs @@ -17,7 +17,7 @@ //! //! ```toml //! [dependencies] -//! saphyr-parser = "0.0.2" +//! saphyr-parser = "0.0.3" //! ``` //! //! # Features diff --git a/saphyr/CHANGELOG.md b/saphyr/CHANGELOG.md index c874cd7..a0bc01d 100644 --- a/saphyr/CHANGELOG.md +++ b/saphyr/CHANGELOG.md @@ -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**: