Skip to content

Commit

Permalink
fix(treewide): master -> main
Browse files Browse the repository at this point in the history
Signed-off-by: Sphericalkat <[email protected]>
  • Loading branch information
SphericalKat committed Jun 23, 2023
1 parent 6d84689 commit 1f1af68
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-ghr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release to GitHub releases
on:
push:
branches:
- master
- main

jobs:
release_to_ghr:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Tests
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main

jobs:
tests:
Expand Down
19 changes: 0 additions & 19 deletions .semrelrc

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FuzzyWuzzy

[![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)
![Coverage](https://raw.githubusercontent.com/sphericalkat/dart-fuzzywuzzy/main/coverage_badge.svg?sanitize=true)

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.

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

```yaml
dependencies:
fuzzywuzzy: 1.1.4 # latest version
fuzzywuzzy: <latest version>
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dart-fuzzywuzzy",
"version": "1.0.0",
"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)",
"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)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down

0 comments on commit 1f1af68

Please sign in to comment.