Skip to content

Commit 6db2cc6

Browse files
committed
Prepared for v0.4 release
1 parent 8c12b68 commit 6db2cc6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGES

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[0.4.0]
2-
1+
[0.4.0] ~ 10/07/2016
2+
- Added: Sift3 distance + tests
33

44
[0.3.0] ~ 30/06/2016
55
- Added: Damerau Levenshtein distance + tests

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "distance"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Marcus Brummer <mbrlabs7@gmail.com>"]
55

66
description = "A collection of approximate string matching algorithms"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# distance
22
[![](https://travis-ci.org/mbrlabs/distance.svg?branch=master)](https://travis-ci.org/mbrlabs/distance)
33
[![](https://img.shields.io/crates/v/distance.svg)](https://crates.io/crates/distance)
4-
[![](https://img.shields.io/badge/docs-v0.3.0-blue.svg)](https://mbrlabs.github.io/distance)
4+
[![](https://img.shields.io/badge/docs-v0.4.0-blue.svg)](https://mbrlabs.github.io/distance)
55

66
This is a rust library for approximate string matching algorithms.
77
Possible applications for this are fuzzy string searching, spell checkers, spam filters, etc.
@@ -19,7 +19,7 @@ distance is available on [crates.io](https://crates.io/crates/distance).
1919

2020
```toml
2121
[dependencies]
22-
distance = "0.3"
22+
distance = "0.4"
2323
```
2424

2525
## Usage

src/sift3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/// Calculates the sift3 distance between two strings with a default max_distance of 5.
1616
///
1717
/// # Sift3
18-
/// (Sift3)[http://siderite.blogspot.com/2007/04/super-fast-and-accurate-string-distance.html] - super fast and accurate string distance algorithm.
18+
/// [Sift3](http://siderite.blogspot.com/2007/04/super-fast-and-accurate-string-distance.html) - super fast and accurate string distance algorithm.
1919
/// The higher the return value, the more different the two strings are.
2020
/// A value of 0.0 means both strings are equal.
2121
///

0 commit comments

Comments
 (0)