From a1333db427ac6585e5900a6a32f431b96f656b52 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sun, 16 Feb 2020 00:53:36 -0600 Subject: [PATCH] Add helper to update version easily. --- private/version.nim | 2 +- ptk.nimble | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/private/version.nim b/private/version.nim index 15caada..345cd21 100644 --- a/private/version.nim +++ b/private/version.nim @@ -1 +1 @@ -const PTK_VERSION* = "1.0.1" +const PTK_VERSION* = "1.0.2" \ No newline at end of file diff --git a/ptk.nimble b/ptk.nimble index 4cc3e5c..457bc41 100644 --- a/ptk.nimble +++ b/ptk.nimble @@ -1,7 +1,6 @@ # Package -include "private/version.nim" -version = PTK_VERSION +version = "1.0.2" author = "Jonathan Bernard" description = "Personal Time Keeper" license = "MIT" @@ -19,5 +18,9 @@ requires @[ "jester 0.4.1", "https://git.jdb-labs.com/jdb/nim-lang-utils.git", "https://git.jdb-labs.com/jdb/nim-cli-utils.git", - "https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.2" + "https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.2", + "https://git.jdb-labs.com/jdb/update-nim-package-version" ] + +task updateVersion, "Update the version of this package.": + exec "update_nim_package_version ptk 'private/version.nim'" \ No newline at end of file