Bug 1608150 [wpt PR 21112] - Add missing space in `./wpt lint` command line docs...
[gecko.git] / third_party / rust / strsim / CHANGELOG.md
blobe73385d9f60053b286bbf16817558ec6a448a6e8
1 # Change Log
2 This project attempts to adhere to [Semantic Versioning](http://semver.org).
4 ## [Unreleased]
6 ## [0.7.0] - (2018-01-17)
7 ### Changed
8 - Faster Levenshtein implementation (thanks @wdv4758h)
10 ### Removed
11 - Remove the "against_vec" functions. They are one-liners now, so they don't
12   seem to add enough value to justify making the API larger. I didn't find
13   anybody using them when I skimmed through a GitHub search. If you do use them,
14   you can change the calls to something like:
15 ```rust
16 let distances = strings.iter().map(|a| jaro(target, a)).collect();
17 ```
19 ## [0.6.0] - (2016-12-26)
20 ### Added
21 - Add optimal string alignment distance
23 ### Fixed
24 - Fix Damerau-Levenshtein implementation (previous implementation was actually
25   optimal string alignment; see this [Damerau-Levenshtein explanation])
27 ## [0.5.2] - (2016-11-21)
28 ### Changed
29 - Remove Cargo generated documentation in favor of a [docs.rs] link
31 ## [0.5.1] - (2016-08-23)
32 ### Added
33 - Add Cargo generated documentation
35 ### Fixed
36 - Fix panic when Jaro or Jaro-Winkler are given strings both with a length of
37   one
39 ## [0.5.0] - (2016-08-11)
40 ### Changed
41 - Make Hamming faster (thanks @IBUzPE9) when the two strings have the same
42   length but slower when they have different lengths
44 ## [0.4.1] - (2016-04-18)
45 ### Added
46 - Add Vagrant setup for development
47 - Add AppVeyor configuration for Windows CI
49 ### Fixed
50 - Fix metrics when given strings with multibyte characters (thanks @WanzenBug)
52 ## [0.4.0] - (2015-06-10)
53 ### Added
54 - For each metric, add a function that takes a vector of strings and returns a
55 vector of results (thanks @ovarene)
57 ## [0.3.0] - (2015-04-30)
58 ### Changed
59 - Remove usage of unstable Rust features
61 ## [0.2.5] - (2015-04-24)
62 ### Fixed
63 - Remove unnecessary `Float` import from doc tests
65 ## [0.2.4] - (2015-04-15)
66 ### Fixed
67 - Remove unused `core` feature flag
69 ## [0.2.3] - (2015-04-01)
70 ### Fixed
71 - Remove now unnecessary `Float` import
73 ## [0.2.2] - (2015-03-29)
74 ### Fixed
75 - Remove usage of `char_at` (marked as unstable)
77 ## [0.2.1] - (2015-02-20)
78 ### Fixed
79 - Update bit vector import to match Rust update
81 ## [0.2.0] - (2015-02-19)
82 ### Added
83 - Implement Damerau-Levenshtein
84 - Add tests in docs
86 ## [0.1.1] - (2015-02-10)
87 ### Added
88 - Configure Travis for CI
89 - Add rustdoc comments
91 ### Fixed
92 - Limit Jaro-Winkler return value to a maximum of 1.0
93 - Fix float comparsions in tests
95 ## [0.1.0] - (2015-02-09)
96 ### Added
97 - Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein
99 [Unreleased]: https://github.com/dguo/strsim-rs/compare/0.7.0...HEAD
100 [0.7.0]: https://github.com/dguo/strsim-rs/compare/0.6.0...0.7.0
101 [0.6.0]: https://github.com/dguo/strsim-rs/compare/0.5.2...0.6.0
102 [0.5.2]: https://github.com/dguo/strsim-rs/compare/0.5.1...0.5.2
103 [0.5.1]: https://github.com/dguo/strsim-rs/compare/0.5.0...0.5.1
104 [0.5.0]: https://github.com/dguo/strsim-rs/compare/0.4.1...0.5.0
105 [0.4.1]: https://github.com/dguo/strsim-rs/compare/0.4.0...0.4.1
106 [0.4.0]: https://github.com/dguo/strsim-rs/compare/0.3.0...0.4.0
107 [0.3.0]: https://github.com/dguo/strsim-rs/compare/0.2.5...0.3.0
108 [0.2.5]: https://github.com/dguo/strsim-rs/compare/0.2.4...0.2.5
109 [0.2.4]: https://github.com/dguo/strsim-rs/compare/0.2.3...0.2.4
110 [0.2.3]: https://github.com/dguo/strsim-rs/compare/0.2.2...0.2.3
111 [0.2.2]: https://github.com/dguo/strsim-rs/compare/0.2.1...0.2.2
112 [0.2.1]: https://github.com/dguo/strsim-rs/compare/0.2.0...0.2.1
113 [0.2.0]: https://github.com/dguo/strsim-rs/compare/0.1.1...0.2.0
114 [0.1.1]: https://github.com/dguo/strsim-rs/compare/0.1.0...0.1.1
115 [0.1.0]: https://github.com/dguo/strsim-rs/compare/fabad4...0.1.0
116 [docs.rs]: https://docs.rs/strsim/
117 [Damerau-Levenshtein explanation]:
118 http://scarcitycomputing.blogspot.com/2013/04/damerau-levenshtein-edit-distance.html