From dc4a6b57d9c28f4885470415ae8f307ebf33d628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Thu, 24 Aug 2023 17:34:00 +0200 Subject: [PATCH] Support Nim v1.6.x to avoid breaking dependant packages @baf03, would it possible to revert this package Nim-requirement? It still compiles for me with older Nim versions, so I just get breaks from other CI's not updated to Nim 2.0 --- otp.nimble | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otp.nimble b/otp.nimble index 19d8e25..8ae9222 100644 --- a/otp.nimble +++ b/otp.nimble @@ -1,11 +1,11 @@ [Package] name = "OTP" -version = "0.2.0" +version = "0.2.1" author = "Huy Doan" description = "One Time Password library for Nim" license = "MIT" [Deps] -Requires: "nim >= 2.0.0" +Requires: "nim >= 1.6.10" Requires: "hmac >= 0.3.0" Requires: "base32"