From 600747e1ac74e20690cb27d915d3930fc8b629b2 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Fri, 14 Feb 2020 11:43:27 -0600 Subject: [PATCH] Update for Nim 1.0.0 - Added `format` for Durations. Remove deprecated functions. --- timeutils.nim | 12 +++--------- timeutils.nimble | 5 ++--- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/timeutils.nim b/timeutils.nim index 0fd8516..9b37a7c 100644 --- a/timeutils.nim +++ b/timeutils.nim @@ -14,15 +14,9 @@ proc format*(ti: TimeInterval, fmt: string): string = let info = (zeroTime + ti).utc return info.format(fmt) -# Will be deprecated in Nim 0.18.1 as it will exist in the standard times module. -proc `-`*(a, b: DateTime): Duration {.deprecated} = - return times.`-`(a,b) - -proc `<`*(a, b: DateTime): bool {.deprecated} = - return times.`<`(a,b) - -proc `<=`*(a, b: DateTime): bool {.deprecated} = - return times.`<=`(a,b) +proc format*(d: Duration, fmt: string): string = + let info = (fromUnix(0) + d).utc + return info.format(fmt) proc `<`*(a, b: TimeInterval): bool = return (zeroTime + a) < (zeroTime + b) diff --git a/timeutils.nimble b/timeutils.nimble index f1924c3..105ccba 100644 --- a/timeutils.nimble +++ b/timeutils.nimble @@ -1,11 +1,10 @@ # Package -version = "0.5.1" +version = "0.5.2" author = "Jonathan Bernard" description = "Utility methods to fill in the lacking time support in Nim\'s stdlib." license = "BSD3" # Dependencies -requires "nim >= 0.19.0" - +requires "nim >= 1.0.0"