Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support the latest dependencies, prepare for release #73

Merged
merged 1 commit into from
May 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.0.17

- Update to latest dependencies.
- Require Dart 2.12.

## 2.0.16

- Add a summary of the most broken links (as opposed to just warnings)
Expand Down
4 changes: 2 additions & 2 deletions bin/linkcheck.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import 'dart:io';
import 'package:linkcheck/linkcheck.dart';

Future<int> main(List<String> arguments) async {
await runZoned(() async {
await runZonedGuarded(() async {
// Run the link checker. The returned value will be the program's exit code.
exitCode = await run(arguments, stdout);
}, onError: (Object e, StackTrace stackTrace) {
}, (Object e, StackTrace stackTrace) {
stderr.writeln("INTERNAL ERROR: Sorry! Please open "
"https://github.com/filiph/linkcheck/issues/new "
"in your favorite browser and copy paste the following output there:"
Expand Down
2 changes: 1 addition & 1 deletion lib/linkcheck.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const hostsFlag = "hosts";
const inputFlag = "input-file";
const redirectFlag = "show-redirects";
const skipFlag = "skip-file";
const version = "2.0.16";
const version = "2.0.17";
const versionFlag = "version";
final _portOnlyRegExp = RegExp(r"^:\d+$");

Expand Down
Loading