From da6ba66e1ce2bc639203aeeda38204c99ac45c64 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sat, 13 Jun 2026 07:15:50 -0500 Subject: [PATCH] Prepare 1.0.0 release --- bibleref.nimble | 2 +- src/bibleref.nim | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bibleref.nimble b/bibleref.nimble index 95ef32a..ce13ba7 100644 --- a/bibleref.nimble +++ b/bibleref.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.0" +version = "1.0.0" author = "Jonathan Bernard" description = "Simple Nim CLI for retrieving Biblical passages" license = "MIT" diff --git a/src/bibleref.nim b/src/bibleref.nim index 9590a30..1c7e11d 100644 --- a/src/bibleref.nim +++ b/src/bibleref.nim @@ -105,11 +105,12 @@ Options: -f, --output-format Select a specific output format. Valid values are 'raw', 'markdown', 'plain', 'reading'. - --translation Select a specific translation. Supported values + -t, --translation + Select a specific translation. Supported values are 'amp', 'esv', 'nkjv', and 'niv'. Defaults to 'esv'. - -t, --esv-api-token Provide the API token on the command line. By + --esv-api-token Provide the API token on the command line. By default this will be read either from the .bibleref.cfg.json file or the ESV_API_TOKEN envionment variable. @@ -135,7 +136,7 @@ Options: try: # Parse arguments - let args = docopt(USAGE, version = "0.3.0") + let args = docopt(USAGE, version = "1.0.0") if args["--debug"]: consoleLogger.levelThreshold = lvlDebug