From ce015f5a1fb03679f9c07c11a3eb1a806309dbf3 Mon Sep 17 00:00:00 2001
From: Dmytro Bogatov <dmytro@dbogatov.org>
Date: Fri, 26 Jun 2020 16:48:48 -0400
Subject: [PATCH] Fix.

---
 README.md    | 2 ++
 package.json | 2 +-
 src/index.ts | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 7439352..fc610fd 100644
--- a/README.md
+++ b/README.md
@@ -137,6 +137,8 @@ Usage: index inspect [options] <url>
 
 Check links in the given URL
 
+Dedicated to Daria Bogatova ♥
+
 Options:
   -r, --recursive                             recursively check all links in all URLs within supplied host (default: false)
   -t, --timeout <number>                      timeout in ms after which the link will be considered broken (default: 2000)
diff --git a/package.json b/package.json
index e9263e7..5188d97 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "broken-links-inspector",
-	"version": "1.1.3",
+	"version": "1.1.4",
 	"description": "Extract and recursively check all URLs reporting broken ones",
 	"main": "dist/inspector.js",
 	"types": "dist/inspector.d.ts",
diff --git a/src/index.ts b/src/index.ts
index 2da12a7..1506e0f 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -6,7 +6,7 @@ import { Inspector, URLsMatchingSet } from "./inspector"
 import { ConsoleReporter, JUnitReporter } from "./report"
 
 commander
-	.version("1.1.3")
+	.version("1.1.4")
 	.description("Extract and recursively check all URLs reporting broken ones\n\nDedicated to Daria Bogatova \u2665")
 
 commander
-- 
GitLab