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

Draft new release to fix GH Action on Marketplace #95

Merged
merged 3 commits into from
May 10, 2022
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.0.21

- Update ci.yml to latest Dart executables ([#92](https://github.com/filiph/linkcheck/pull/92))
- Add docker hub image to Readme ([#91](https://github.com/filiph/linkcheck/pull/91)), Thanks Manuel ([@tennox](https://github.com/tennox))
- Fix invalid syntax of github action file ([#90](https://github.com/filiph/linkcheck/pull/90)), Thanks Manuel ([@errnesto](https://github.com/errnesto))
- Changed Dockerfile for cross-platform image building ([#88](https://github.com/filiph/linkcheck/pull/88)), Thanks Patrick ([@kastnerp](https://github.com/kastnerp))

## 2.0.20

- Fix passing multiple arguments to github action.
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.20";
const version = "2.0.21";
const versionFlag = "version";
final _portOnlyRegExp = RegExp(r"^:\d+$");

Expand Down
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.20 # Don't forget to update in lib/linkcheck.dart, too.
version: 2.0.21 # 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