diff --git a/README.md b/README.md
index 7439352b383538a4290043b3fb06be0700ab1dd9..fc610fd0adc6307bb43c2c916a5be162cf17fb1a 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 e9263e7c80be94b9acee346406afc9cb0ca2b292..5188d97adea81a67585b7963e312a00d22ec374d 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 2da12a7abdef3c7ef59e8878fc2cc323c134babd..1506e0f09969e122d0cda808ec3fa2011bc94e77 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