From 64fdcb359d4cad68fdd18cc87f8d06d9c948c530 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Mon, 14 May 2018 09:06:45 -0500 Subject: [PATCH] Bump version to use Nim 0.18.0 (stable) instead of 0.18.1 (not yet released). --- cliutils.nim | 4 +++- cliutils.nimble | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cliutils.nim b/cliutils.nim index a5c83e5..48ee05c 100644 --- a/cliutils.nim +++ b/cliutils.nim @@ -1,5 +1,7 @@ -import docopt, json, osproc, posix, nre, streams, strutils, strtabs, unicode +import docopt, json, osproc, posix, nre, streams, strtabs, unicode import os except sleep +import strutils except toUpper, toLower + type CombinedConfig* = object diff --git a/cliutils.nimble b/cliutils.nimble index 035806d..f7f6bde 100644 --- a/cliutils.nimble +++ b/cliutils.nimble @@ -1,11 +1,11 @@ # Package -version = "0.3.3" +version = "0.3.4" author = "Jonathan Bernard" description = "Helper functions for writing command line interfaces." license = "MIT" # Dependencies -requires @["nim >= 0.18.1", "docopt"] +requires @["nim >= 0.18.0", "docopt"]