Skip to content

Commit 1f1af68

Browse files
committed
fix(treewide): master -> main
Signed-off-by: Sphericalkat <[email protected]>
1 parent 6d84689 commit 1f1af68

File tree

5 files changed

+6
-25
lines changed

5 files changed

+6
-25
lines changed

.github/workflows/release-ghr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release to GitHub releases
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
release_to_ghr:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Tests
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
push:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
tests:

.semrelrc

Lines changed: 0 additions & 19 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FuzzyWuzzy
22

33
[![Tests](https://github.com/SphericalKat/dart-fuzzywuzzy/actions/workflows/test.yml/badge.svg)](https://github.com/SphericalKat/dart-fuzzywuzzy/actions/workflows/test.yml)
4-
![Coverage](https://raw.githubusercontent.com/sphericalkat/dart-fuzzywuzzy/master/coverage_badge.svg?sanitize=true)
4+
![Coverage](https://raw.githubusercontent.com/sphericalkat/dart-fuzzywuzzy/main/coverage_badge.svg?sanitize=true)
55

66
This is a Dart port of the popular [FuzzyWuzzy](https://github.com/seatgeek/fuzzywuzzy) python package. This algorithm uses [Levenshtein distance](https://en.wikipedia.org/wiki/Levenshtein_distance) to calculate similarity between strings.
77

@@ -19,7 +19,7 @@ I personally needed to use this for my own search algorithms, and there weren't
1919

2020
```yaml
2121
dependencies:
22-
fuzzywuzzy: 1.1.4 # latest version
22+
fuzzywuzzy: <latest version>
2323
```
2424
2525
## Usage

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dart-fuzzywuzzy",
33
"version": "1.0.0",
4-
"description": "[![Tests](https://github.com/SphericalKat/dart-fuzzywuzzy/actions/workflows/test.yml/badge.svg)](https://github.com/SphericalKat/dart-fuzzywuzzy/actions/workflows/test.yml) ![Coverage](https://raw.githubusercontent.com/sphericalkat/dart-fuzzywuzzy/master/coverage_badge.svg?sanitize=true)",
4+
"description": "[![Tests](https://github.com/SphericalKat/dart-fuzzywuzzy/actions/workflows/test.yml/badge.svg)](https://github.com/SphericalKat/dart-fuzzywuzzy/actions/workflows/test.yml) ![Coverage](https://raw.githubusercontent.com/sphericalkat/dart-fuzzywuzzy/main/coverage_badge.svg?sanitize=true)",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"
77
},

0 commit comments

Comments
 (0)