From a6678b2688b22d09be206858aa0366eef49f77fc Mon Sep 17 00:00:00 2001 From: Xie Yanbo Date: Wed, 3 Feb 2021 13:19:14 +0800 Subject: [PATCH] supported since nim 1.4.0 (#25) --- .travis.yml | 6 +----- leveldb.nimble | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 62e14fa..e8c686e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,11 +19,7 @@ matrix: - os: linux env: CHANNEL=stable - os: linux - env: CHANNEL=0.20.2 - - os: linux - env: CHANNEL=0.19.6 - - os: linux - env: CHANNEL=0.18.0 + env: CHANNEL=1.4.0 install: - | diff --git a/leveldb.nimble b/leveldb.nimble index 7b0eabf..19432c8 100644 --- a/leveldb.nimble +++ b/leveldb.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.0" +version = "0.4.0" author = "Michał Zieliński" description = "LevelDB wrapper for Nim" license = "MIT" @@ -10,4 +10,4 @@ bin = @["leveldbtool"] # Dependencies -requires "nim >= 0.18.0" +requires "nim >= 1.4.0"