mirror of
https://gitee.com/openharmony/third_party_rust_strsim-rs
synced 2024-11-22 23:29:43 +00:00
Release v0.10.0
This commit is contained in:
parent
6f8a8cb49f
commit
72784f07f2
@ -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
|
||||
|
13
Cargo.toml
13
Cargo.toml
@ -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"]
|
||||
|
Loading…
Reference in New Issue
Block a user