From cc25041cc1aa583fa890c15bf2920a6dd952190a Mon Sep 17 00:00:00 2001 From: Danny Guo Date: Thu, 9 May 2019 01:23:23 -0400 Subject: [PATCH] Release v0.9.2 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 204f69d..e9f1c79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ This project attempts to adhere to [Semantic Versioning](http://semver.org). ## [Unreleased] +## [0.9.2] - (2019-05-09) + ### Changed - Revert back to the standard library hashmap because it will use hashbrown very @@ -119,7 +121,8 @@ vector of results (thanks @ovarene) ### Added - Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein -[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.1...HEAD +[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.2...HEAD +[0.9.2]: https://github.com/dguo/strsim-rs/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/dguo/strsim-rs/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/dguo/strsim-rs/compare/0.8.0...0.9.0 [0.8.0]: https://github.com/dguo/strsim-rs/compare/0.7.0...0.8.0 diff --git a/Cargo.toml b/Cargo.toml index 835fa8f..df18a09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strsim" -version = "0.9.1" +version = "0.9.2" authors = ["Danny Guo "] description = """ Implementations of string similarity metrics. diff --git a/README.md b/README.md index e350e08..ac4103c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ There are also generic versions of the functions for non-string inputs. your `Cargo.toml`: ```toml [dependencies] -strsim = "0.9.1" +strsim = "0.9.2" ``` ## Usage