From 96d1e87655d606b1427daf10cdd4107b5a8fa937 Mon Sep 17 00:00:00 2001 From: Yarrow Angelweed Date: Thu, 2 Feb 2023 15:22:34 -0500 Subject: [PATCH] Release 0.2.6 --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a556f6d..13ffd09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [0.2.6] - 2023-02-02 + +- Abandon trying to have a Minimum Supported Rust Version (maybe once we're 1.0?) +- Use cargo-dist to create the release +- Move `for_byte_lines` from `NextOperand` to a trait (thanks to [ysthakur] for the suggestion) + ## [0.2.5] - 2022-11-10 ## Changed @@ -37,6 +43,8 @@ Initial release -[Unreleased]: https://github.com/yarrow/zet/compare/0.2.0...HEAD +[0.2.6]: https://github.com/yarrow/zet/compare/0.2.5...v0.2.6 +[0.2.5]: https://github.com/yarrow/zet/compare/0.2.0...0.2.5 [0.2.0]: https://github.com/yarrow/zet/compare/v0.1.1...0.2.0 [0.1.1]: https://github.com/yarrow/zet/compare/v0.1.0...v0.1.1 +[ysthakur]:https://github.com/ysthakur diff --git a/Cargo.lock b/Cargo.lock index de22ed1..804e9b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -621,7 +621,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "zet" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index a3263cf..b04eb85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zet" -version = "0.2.5" +version = "0.2.6" authors = ["Yarrow Angelweed "] description = "zet finds the union, intersection, set difference, etc of files considered as sets of lines" documentation = "https://github.com/yarrow/zet"