From f19b06437d8b9225c74bab82ff38fa00a9d7e873 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 29 Feb 2024 13:14:49 -0600 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 0b274697..d0076e40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] - ReleaseDate +## [0.6.4] - 2024-02-29 + ### Documentation - Provide examples of concrete signatures @@ -2303,7 +2305,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.3...HEAD +[Unreleased]: https://github.com/winnow-rs/winnow/compare/v0.6.4...HEAD +[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 [0.6.2]: https://github.com/winnow-rs/winnow/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/winnow-rs/winnow/compare/v0.6.0...v0.6.1 diff --git a/Cargo.lock b/Cargo.lock index 45a58df9..9a2dab72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1426,7 +1426,7 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.6.3" +version = "0.6.4" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 4c3fc0fb..ab2c7f57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ include = [ [package] name = "winnow" -version = "0.6.3" +version = "0.6.4" 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 3468bb5c..2e469e06 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.3/CHANGELOG.md) (includes major version migration +//! - [CHANGELOG](https://github.com/winnow-rs/winnow/blob/v0.6.4/CHANGELOG.md) (includes major version migration //! guides) //! //! ## Aspirations