From 7b927bad843984c1aec9e54509b873ca23d4a4c9 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 30 Jan 2025 11:48:35 -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 92e3b226..b4d5cda3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] - ReleaseDate +## [0.6.26] - 2025-01-30 + ### Compatibility - Deprecate `ParserError::from_error_kind` in favor of `ParserError::from_input` @@ -2476,7 +2478,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.25...HEAD +[Unreleased]: https://github.com/winnow-rs/winnow/compare/v0.6.26...HEAD +[0.6.26]: https://github.com/winnow-rs/winnow/compare/v0.6.25...v0.6.26 [0.6.25]: https://github.com/winnow-rs/winnow/compare/v0.6.24...v0.6.25 [0.6.24]: https://github.com/winnow-rs/winnow/compare/v0.6.23...v0.6.24 [0.6.23]: https://github.com/winnow-rs/winnow/compare/v0.6.22...v0.6.23 diff --git a/Cargo.lock b/Cargo.lock index 7b466ed9..241c1988 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1563,7 +1563,7 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.25" +version = "0.6.26" dependencies = [ "annotate-snippets", "anstream 0.3.2", diff --git a/Cargo.toml b/Cargo.toml index 02f93cf8..112c5037 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ zero_sized_map_values = "warn" [package] name = "winnow" -version = "0.6.25" +version = "0.6.26" 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 e312d0cc..c53ddf28 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.25/CHANGELOG.md) (includes major version migration +//! - [CHANGELOG](https://github.com/winnow-rs/winnow/blob/v0.6.26/CHANGELOG.md) (includes major version migration //! guides) //! //! ## Aspirations