From 73211ad0e7c830cc926fc52f1818425fb8918040 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 11 Apr 2024 09:06:27 -0500 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f552b268..21e22105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] - ReleaseDate +## [0.6.6] - 2024-04-11 + ### Fixes - Add impl `ErrorConvert` for `ContextError` so it can be used with bit parsing @@ -2321,7 +2323,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.5...HEAD +[Unreleased]: https://github.com/winnow-rs/winnow/compare/v0.6.6...HEAD +[0.6.6]: https://github.com/winnow-rs/winnow/compare/v0.6.5...v0.6.6 [0.6.5]: https://github.com/winnow-rs/winnow/compare/v0.6.4...v0.6.5 [0.6.4]: https://github.com/winnow-rs/winnow/compare/v0.6.3...v0.6.4 [0.6.3]: https://github.com/winnow-rs/winnow/compare/v0.6.2...v0.6.3 diff --git a/Cargo.lock b/Cargo.lock index b717e2e4..a717f271 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1426,7 +1426,7 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.6.5" +version = "0.6.6" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index ddd8cd64..ba6e0088 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ include = [ [package] name = "winnow" -version = "0.6.5" +version = "0.6.6" 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 2fdc5b26..c1d0d1e6 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.5/CHANGELOG.md) (includes major version migration +//! - [CHANGELOG](https://github.com/winnow-rs/winnow/blob/v0.6.6/CHANGELOG.md) (includes major version migration //! guides) //! //! ## Aspirations