From eebfe2f0bfe8b3ff2c4cee3b602e258dd62ec283 Mon Sep 17 00:00:00 2001 From: Laurence Tratt Date: Wed, 20 Mar 2024 11:29:23 +0000 Subject: [PATCH] Prepare a 0.3.0 release. --- CHANGES.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 176819e..e2eb72b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +# fm 0.3.0 (2024-03-20) + +* Add `OutputFormatter`s. The default output formatting has now changed from a + summary of the pattern and text to: the raw text followed by the + (same-as-before) summary. + +* `FMatchError` no longer implements `PartialEq`. + + # fm 0.2.2 (2023-05-23) * `...\n...` is an illegal pattern, but previously caused an error when diff --git a/Cargo.toml b/Cargo.toml index 0d1c42a..2919015 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "fm" description = "Non-backtracking fuzzy text matcher" repository = "https://github.com/softdevteam/fm/" -version = "0.2.2" +version = "0.3.0" authors = ["Edd Barrett ", "Laurence Tratt "] readme = "README.md" license = "Apache-2.0/MIT"