diff --git a/CHANGELOG.md b/CHANGELOG.md index c26eeb5a..72f17ce1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] - ReleaseDate +## [0.6.13] - 2024-06-06 + ### Documentation - Expand on error reporting @@ -2367,7 +2369,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.12...HEAD +[Unreleased]: https://github.com/winnow-rs/winnow/compare/v0.6.13...HEAD +[0.6.13]: https://github.com/winnow-rs/winnow/compare/v0.6.12...v0.6.13 [0.6.12]: https://github.com/winnow-rs/winnow/compare/v0.6.11...v0.6.12 [0.6.11]: https://github.com/winnow-rs/winnow/compare/v0.6.10...v0.6.11 [0.6.10]: https://github.com/winnow-rs/winnow/compare/v0.6.9...v0.6.10 diff --git a/Cargo.lock b/Cargo.lock index f66da68b..bcabd1e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1554,7 +1554,7 @@ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" [[package]] name = "winnow" -version = "0.6.12" +version = "0.6.13" dependencies = [ "annotate-snippets", "anstream 0.3.2", diff --git a/Cargo.toml b/Cargo.toml index 1d661a62..c262e85f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ zero_sized_map_values = "warn" [package] name = "winnow" -version = "0.6.12" +version = "0.6.13" description = "A byte-oriented, zero-copy, parser combinators library" repository = "https://github.com/winnow-rs/winnow" categories = ["parsing"] diff --git a/src/lib.rs b/src/lib.rs index 660eeafd..9c874986 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.12/CHANGELOG.md) (includes major version migration +//! - [CHANGELOG](https://github.com/winnow-rs/winnow/blob/v0.6.13/CHANGELOG.md) (includes major version migration //! guides) //! //! ## Aspirations