From d9f10d5cc1d5a6a72d5d2e8ce3ab7d2690e5e563 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sun, 7 Jan 2024 14:21:49 +0100 Subject: [PATCH] release version 0.10.1 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f38f562..558cbf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ This project attempts to adhere to [Semantic Versioning](http://semver.org). ## [Unreleased] +## [0.10.1] - (2024-01-07) + ### Changed - improve OSA implementation @@ -195,7 +197,8 @@ vector of results (thanks @ovarene) - Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein -[Unreleased]: https://github.com/rapidfuzz/strsim-rs/compare/0.10.0...HEAD +[Unreleased]: https://github.com/rapidfuzz/strsim-rs/compare/0.10.1...HEAD +[0.10.1]: https://github.com/rapidfuzz/strsim-rs/compare/0.10.0...0.10.1 [0.10.0]: https://github.com/rapidfuzz/strsim-rs/compare/0.9.3...0.10.0 [0.9.3]: https://github.com/rapidfuzz/strsim-rs/compare/0.9.2...0.9.3 [0.9.2]: https://github.com/rapidfuzz/strsim-rs/compare/0.9.1...0.9.2 diff --git a/Cargo.toml b/Cargo.toml index c7fe064..8e0cd10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strsim" -version = "0.10.0" +version = "0.10.1" authors = ["Danny Guo ", "maxbachmann "] description = """ Implementations of string similarity metrics. Includes Hamming, Levenshtein,