diff --git a/.gitignore b/.gitignore index bcbdb57..058195a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ docs/* experiments/imdb/* !experiments/imdb/Makefile !experiments/imdb/*.nim -kuzu nimble.paths nimcache/* testresults/* diff --git a/README.md b/README.md index dd18dee..d83d10e 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ For more information about Kuzu itself, see its $ nimble install kuzu -The current version of this library is built for Kuzu v0.11.0. +The current version of this library is built for Kuzu v0.11.1. ## Usage diff --git a/src/kuzu.nim b/src/kuzu.nim index 36ff91b..ce29ff3 100644 --- a/src/kuzu.nim +++ b/src/kuzu.nim @@ -7,10 +7,10 @@ when defined( futharkWrap ): import futhark, os importc: - outputPath currentSourcePath.parentDir / "kuzu" / "0.11.0.nim" + outputPath currentSourcePath.parentDir / "kuzu" / "0.11.1.nim" "kuzu.h" else: - include "kuzu/0.11.0.nim" + include "kuzu/0.11.1.nim" import std/files, diff --git a/src/kuzu/0.11.0.nim b/src/kuzu/0.11.1.nim similarity index 100% rename from src/kuzu/0.11.0.nim rename to src/kuzu/0.11.1.nim diff --git a/src/kuzu/constants.nim b/src/kuzu/constants.nim index 45c56ae..a0987fd 100644 --- a/src/kuzu/constants.nim +++ b/src/kuzu/constants.nim @@ -1,7 +1,7 @@ # vim: set et sta sw=4 ts=4 : const KUZU_VERSION* = "0.6.1" -const KUZU_EXPECTED_LIBVERSION* = "0.11.0" +const KUZU_EXPECTED_LIBVERSION* = "0.11.1" const BLOB_MAXSIZE = 4096 let KUZU_DEFAULT_CONFIG* = kuzu_default_system_config()