Bump version.

This commit is contained in:
2026-07-05 21:01:25 -05:00
parent 6972a4e531
commit ae9f0f4312
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Package
version = "1.1.0"
version = "1.1.1"
author = "Jonathan Bernard"
description = "Simple Nim CLI for retrieving Biblical passages"
license = "MIT"
+2 -1
View File
@@ -138,6 +138,7 @@ Options:
--api-bible-nkjv-bible-id <id>
Override the API.Bible Bible ID for NKJV.
"""
const VERSION = "1.1.1"
let consoleLogger = newConsoleLogger(
levelThreshold=lvlInfo,
@@ -146,7 +147,7 @@ Options:
try:
# Parse arguments
let args = docopt(USAGE, version = "1.1.0")
let args = docopt(USAGE, version = VERSION)
if args["--debug"]:
consoleLogger.levelThreshold = lvlDebug