Release v0.10.0

This commit is contained in:
Danny Guo 2020-01-31 09:42:13 -05:00
parent 6f8a8cb49f
commit 72784f07f2
3 changed files with 14 additions and 10 deletions

View File

@ -4,6 +4,12 @@ This project attempts to adhere to [Semantic Versioning](http://semver.org).
## [Unreleased]
## [0.10.0] - (2020-01-31)
### Added
- Sørensen-Dice implementation (thanks [@robjtede](https://github.com/robjtede))
## [0.9.3] - (2019-12-12)
### Fixed
@ -169,7 +175,8 @@ vector of results (thanks @ovarene)
- Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein
[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.3...HEAD
[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.10.0...HEAD
[0.10.0]: https://github.com/dguo/strsim-rs/compare/0.9.3...0.10.0
[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

View File

@ -1,10 +1,10 @@
[package]
name = "strsim"
version = "0.9.3"
authors = ["Danny Guo <dannyguo91@gmail.com>"]
version = "0.10.0"
authors = ["Danny Guo <danny@dannyguo.com>"]
description = """
Implementations of string similarity metrics.
Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, and Jaro-Winkler.
Implementations of string similarity metrics. Includes Hamming, Levenshtein,
OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.
"""
license = "MIT"
readme = "README.md"
@ -12,7 +12,4 @@ keywords = ["string", "similarity", "Hamming", "Levenshtein", "Jaro"]
homepage = "https://github.com/dguo/strsim-rs"
repository = "https://github.com/dguo/strsim-rs"
documentation = "https://docs.rs/strsim/"
exclude = ["/.travis.yml", "/dev"]
[badges]
travis-ci = { repository = "dguo/strsim-rs" }
exclude = ["/.github", "/dev"]

View File

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