mirror of
https://gitee.com/openharmony/third_party_rust_strsim-rs
synced 2024-11-23 07:39:51 +00:00
Release v0.9.1
This commit is contained in:
parent
1cc9a62b12
commit
7aacbc5763
@ -3,6 +3,12 @@ This project attempts to adhere to [Semantic Versioning](http://semver.org).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.9.1] - (2019-04-08)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Faster Damerau-Levenshtein implementation (thanks [@lovasoa](https://github.com/lovasoa))
|
||||||
|
|
||||||
## [0.9.0] - (2019-04-06)
|
## [0.9.0] - (2019-04-06)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -106,7 +112,8 @@ vector of results (thanks @ovarene)
|
|||||||
### Added
|
### Added
|
||||||
- Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein
|
- Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein
|
||||||
|
|
||||||
[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.0...HEAD
|
[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.9.1...HEAD
|
||||||
|
[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.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
|
[0.8.0]: https://github.com/dguo/strsim-rs/compare/0.7.0...0.8.0
|
||||||
[0.7.0]: https://github.com/dguo/strsim-rs/compare/0.6.0...0.7.0
|
[0.7.0]: https://github.com/dguo/strsim-rs/compare/0.6.0...0.7.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "strsim"
|
name = "strsim"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
authors = ["Danny Guo <dannyguo91@gmail.com>"]
|
authors = ["Danny Guo <dannyguo91@gmail.com>"]
|
||||||
description = """
|
description = """
|
||||||
Implementations of string similarity metrics.
|
Implementations of string similarity metrics.
|
||||||
|
@ -18,7 +18,7 @@ There are also generic versions of the functions for non-string inputs.
|
|||||||
your `Cargo.toml`:
|
your `Cargo.toml`:
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
strsim = "0.9.0"
|
strsim = "0.9.1"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
2
dev
2
dev
@ -10,7 +10,7 @@ parser = argparse.ArgumentParser(prog='./dev')
|
|||||||
subparsers = parser.add_subparsers(metavar='<command>', title='commands')
|
subparsers = parser.add_subparsers(metavar='<command>', title='commands')
|
||||||
command = [
|
command = [
|
||||||
'docker', 'run', '-it', '--rm', '-v', os.getcwd() + ':/src:cached',
|
'docker', 'run', '-it', '--rm', '-v', os.getcwd() + ':/src:cached',
|
||||||
'-w=/src', 'rust:1.30.0'
|
'-w=/src', 'rust:1.31.0'
|
||||||
]
|
]
|
||||||
|
|
||||||
def cargo(args, remaining):
|
def cargo(args, remaining):
|
||||||
|
Loading…
Reference in New Issue
Block a user