Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
filiph committed Jan 22, 2021
1 parent 71d3651 commit 92eeb63
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 17 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.0.15

- Improve stability by handling several failures more gracefully
([#57](https://github.com/filiph/linkcheck/issues/57),
[#63](https://github.com/filiph/linkcheck/issues/63),
[#51](https://github.com/filiph/linkcheck/issues/51),
[#40](https://github.com/filiph/linkcheck/issues/40))

## 2.0.14

- Add the `--no-check-anchors` flag, which prevents reporting missing anchors
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.14";
const version = "2.0.15";
const versionFlag = "version";
final _portOnlyRegExp = RegExp(r"^:\d+$");

Expand Down
44 changes: 29 additions & 15 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ packages:
name: _fe_analyzer_shared
url: "https://pub.dartlang.org"
source: hosted
version: "7.0.0"
version: "14.0.0"
analyzer:
dependency: transitive
description:
name: analyzer
url: "https://pub.dartlang.org"
source: hosted
version: "0.39.17"
version: "0.41.2"
args:
dependency: "direct main"
description:
Expand Down Expand Up @@ -84,7 +84,7 @@ packages:
name: coverage
url: "https://pub.dartlang.org"
source: hosted
version: "0.14.0"
version: "0.14.2"
crypto:
dependency: transitive
description:
Expand All @@ -106,6 +106,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.2"
file:
dependency: transitive
description:
name: file
url: "https://pub.dartlang.org"
source: hosted
version: "5.2.1"
glob:
dependency: "direct main"
description:
Expand All @@ -119,7 +126,7 @@ packages:
name: html
url: "https://pub.dartlang.org"
source: hosted
version: "0.14.0+3"
version: "0.14.0+4"
http:
dependency: transitive
description:
Expand All @@ -141,6 +148,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.4"
intl:
dependency: transitive
description:
name: intl
url: "https://pub.dartlang.org"
source: hosted
version: "0.16.1"
io:
dependency: transitive
description:
Expand Down Expand Up @@ -175,7 +189,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.2"
version: "1.2.4"
mime:
dependency: transitive
description:
Expand All @@ -189,14 +203,14 @@ packages:
name: node_interop
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.1"
version: "1.2.1"
node_io:
dependency: transitive
description:
name: node_io
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.1"
version: "1.2.0"
node_preamble:
dependency: transitive
description:
Expand Down Expand Up @@ -259,7 +273,7 @@ packages:
name: shelf_static
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.8"
version: "0.2.9+1"
shelf_web_socket:
dependency: transitive
description:
Expand Down Expand Up @@ -294,7 +308,7 @@ packages:
name: stack_trace
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.5"
version: "1.9.6"
stream_channel:
dependency: "direct main"
description:
Expand Down Expand Up @@ -322,21 +336,21 @@ packages:
name: test
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.3"
version: "1.15.7"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.18"
version: "0.2.18+1"
test_core:
dependency: transitive
description:
name: test_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.11"
version: "0.3.11+4"
typed_data:
dependency: transitive
description:
Expand Down Expand Up @@ -371,14 +385,14 @@ packages:
name: web_socket_channel
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0"
webkit_inspection_protocol:
dependency: transitive
description:
name: webkit_inspection_protocol
url: "https://pub.dartlang.org"
source: hosted
version: "0.7.3"
version: "0.7.4"
yaml:
dependency: transitive
description:
Expand All @@ -387,4 +401,4 @@ packages:
source: hosted
version: "2.2.1"
sdks:
dart: ">=2.7.0 <3.0.0"
dart: ">=2.10.0 <3.0.0"
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: linkcheck
version: 2.0.14 # Don't forget to update in lib/linkcheck.dart, too.
version: 2.0.15 # Don't forget to update in lib/linkcheck.dart, too.

description: >
A very fast link-checker. Crawls sites and checks integrity of links
Expand Down

0 comments on commit 92eeb63

Please sign in to comment.