From 15708cebdfb3cb8bae6e27abf84cde03928bb0c3 Mon Sep 17 00:00:00 2001
From: Jonathan Bernard <jdbernard@gmail.com>
Date: Tue, 21 Feb 2017 11:18:12 -0600
Subject: [PATCH] Add explicit dependency on isaac >= 0.1.2

Something depends on isaac 0.1.0, but that version doesn't compile on Nim 0.16
and above. Until the transitive dependancy is updated, ask for at least 0.1.2.
---
 ptk.nim    | 2 +-
 ptk.nimble | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ptk.nim b/ptk.nim
index 677a0e4..7a7bb96 100644
--- a/ptk.nim
+++ b/ptk.nim
@@ -380,7 +380,7 @@ Options:
   let now = getLocalTime(getTime())
 
   # Parse arguments
-  let args = docopt(doc, version = "ptk 0.9.0")
+  let args = docopt(doc, version = "ptk 0.10.0")
 
   if args["--echo-args"]: echo $args
 
diff --git a/ptk.nimble b/ptk.nimble
index 5fb84ce..d00fde5 100644
--- a/ptk.nimble
+++ b/ptk.nimble
@@ -1,6 +1,6 @@
 # Package
 
-version       = "0.9.0"
+version       = "0.10.0"
 author        = "Jonathan Bernard"
 description   = "Personal Time Keeper"
 license       = "MIT"
@@ -8,5 +8,5 @@ bin           = @["ptk"]
 
 # Dependencies
 
-requires @["nim >= 0.15.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils >= 0.2.0"]
+requires @["nim >= 0.15.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils >= 0.2.0", "isaac >= 0.1.2"]