Bump version.

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