diff --git a/CHANGELOG.md b/CHANGELOG.md index 16b8b96d..e2890f3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] - ReleaseDate +## [0.6.20] - 2024-09-25 + ### Internal - Dependency update @@ -2407,7 +2409,8 @@ Considering the number of changes since the last release, this version can conta - closure syntax change -[Unreleased]: https://github.com/winnow-rs/winnow/compare/v0.6.19...HEAD +[Unreleased]: https://github.com/winnow-rs/winnow/compare/v0.6.20...HEAD +[0.6.20]: https://github.com/winnow-rs/winnow/compare/v0.6.19...v0.6.20 [0.6.19]: https://github.com/winnow-rs/winnow/compare/v0.6.18...v0.6.19 [0.6.18]: https://github.com/winnow-rs/winnow/compare/v0.6.17...v0.6.18 [0.6.17]: https://github.com/winnow-rs/winnow/compare/v0.6.16...v0.6.17 diff --git a/Cargo.lock b/Cargo.lock index 37db296b..76335a70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1569,7 +1569,7 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.19" +version = "0.6.20" dependencies = [ "annotate-snippets", "anstream 0.3.2", diff --git a/Cargo.toml b/Cargo.toml index 9e9fa770..54089e94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ zero_sized_map_values = "warn" [package] name = "winnow" -version = "0.6.19" +version = "0.6.20" description = "A byte-oriented, zero-copy, parser combinators library" categories = ["parsing"] keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"] diff --git a/src/lib.rs b/src/lib.rs index fa5b7710..3c8dd7a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! - [Tutorial][_tutorial::chapter_0] //! - [Special Topics][_topic] //! - [Discussions](https://github.com/winnow-rs/winnow/discussions) -//! - [CHANGELOG](https://github.com/winnow-rs/winnow/blob/v0.6.19/CHANGELOG.md) (includes major version migration +//! - [CHANGELOG](https://github.com/winnow-rs/winnow/blob/v0.6.20/CHANGELOG.md) (includes major version migration //! guides) //! //! ## Aspirations