Release v0.9.3

This commit is contained in:
Danny Guo 2019-12-12 21:54:28 -05:00
parent 605c81c9b9
commit 74ab292905
3 changed files with 6 additions and 3 deletions

View File

@ -4,6 +4,8 @@ This project attempts to adhere to [Semantic Versioning](http://semver.org).
## [Unreleased]
## [0.9.3] - (2019-12-12)
### Fixed
- Fix Jaro and Jaro-Winkler when the arguments have lengths of 1 and are equal.
@ -167,7 +169,8 @@ vector of results (thanks @ovarene)
- Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein
[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.2...HEAD
[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.3...HEAD
[0.9.3]: https://github.com/dguo/strsim-rs/compare/0.9.2...0.9.3
[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

View File

@ -1,6 +1,6 @@
[package]
name = "strsim"
version = "0.9.2"
version = "0.9.3"
authors = ["Danny Guo <dannyguo91@gmail.com>"]
description = """
Implementations of string similarity metrics.

View File

@ -23,7 +23,7 @@ There are also generic versions of the functions for non-string inputs.
your `Cargo.toml`:
```toml
[dependencies]
strsim = "0.9.2"
strsim = "0.9.3"
```
## Usage