diff --git a/.github/workflows/release-ghr.yml b/.github/workflows/release-ghr.yml index 3d3f355..eb52b57 100644 --- a/.github/workflows/release-ghr.yml +++ b/.github/workflows/release-ghr.yml @@ -3,7 +3,7 @@ name: Release to GitHub releases on: push: branches: - - master + - main jobs: release_to_ghr: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5fdea1..743d66c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,10 +3,10 @@ name: Tests on: pull_request: branches: - - master + - main push: branches: - - master + - main jobs: tests: diff --git a/.semrelrc b/.semrelrc deleted file mode 100644 index 79238d3..0000000 --- a/.semrelrc +++ /dev/null @@ -1,19 +0,0 @@ -{ - "plugins": { - "commit-analyzer": { - "name": "default@^1.0.0" - }, - "ci-condition": { - "name": "default" - }, - "changelog-generator": { - "name": "default", - "options": { - "emojis": "false" - } - }, - "provider": { - "name": "github" - } - } -} \ No newline at end of file diff --git a/README.md b/README.md index 95d25ad..1991a90 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: ``` ## Usage diff --git a/package.json b/package.json index 82516d6..1ceeb1e 100644 --- a/package.json +++ b/package.json @@ -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" },