Skip to content

Commit

Permalink
chore: bump package version [skip ci]
Browse files Browse the repository at this point in the history
Signed-off-by: SphericalKat <[email protected]>
  • Loading branch information
SphericalKat committed Mar 28, 2021
1 parent d59546b commit cac8b84
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.3
- Add extractors
- Add tests for extractors
- Improve documentation for ratio algorithms

## 0.1.2
- Add unit tests
- Follow dart file conventions
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ I personally needed to use this for my own search algorithms, and there weren't

```yaml
dependencies:
fuzzywuzzy: 0.1.0 # latest version
fuzzywuzzy: 0.1.3 # latest version
```
## Usage
Expand Down
17 changes: 17 additions & 0 deletions example/fuzzywuzzy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,21 @@ void main() {
cutoff: 10
),
);

print(
extractOne(
query: 'goolge',
choices: [
'google',
'bing',
'facebook',
'linkedin',
'twitter',
'googleplus',
'bingnews',
'plexoogl'
],
cutoff: 10
),
);
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "fuzzywuzzy"
version: "0.1.2"
version: "0.1.3"
homepage: "https://github.com/sphericalkat/dart-fuzzywuzzy"
description: An implementation of the popular fuzzywuzzy package in Dart, to suit all your fuzzy string matching/searching needs!
repository: "https://github.com/sphericalkat/dart-fuzzywuzzy"
Expand Down

0 comments on commit cac8b84

Please sign in to comment.