Skip to content

Commit

Permalink
Update dependencies for Dart 3 and prepare for 3.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
parlough committed Aug 31, 2023
1 parent 7dae0af commit d991c9a
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 117 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: CI
on:
push: {branches: [master]}
push:
branches: [master]
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart --version
- run: dart pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart --version
- run: dart pub get
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.1.0

- Require Dart 3 or later
- Update to latest dependencies supporting Dart 3 and 3.1

## 3.0.0

- Require Dart 2.18 and support Dart 3
Expand Down
2 changes: 1 addition & 1 deletion lib/linkcheck.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const hostsFlag = 'hosts';
const inputFlag = 'input-file';
const redirectFlag = 'show-redirects';
const skipFlag = 'skip-file';
const version = '3.0.0';
const version = '3.1.0';
const versionFlag = 'version';
final _portOnlyRegExp = RegExp(r'^:\d+$');

Expand Down
Loading

0 comments on commit d991c9a

Please sign in to comment.