Release v0.9.1

This commit is contained in:
Danny Guo 2019-04-08 17:24:51 -04:00
parent 1cc9a62b12
commit 7aacbc5763
4 changed files with 11 additions and 4 deletions

View File

@ -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

View File

@ -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.

View File

@ -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
View File

@ -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):