diff --git a/README.md b/README.md index 9c98520..ec7b362 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,8 @@ For more information about Kuzu itself, see its $ nimble install kuzu -The current version of this library is built for Kuzu v0.11.2. +The current version of this library is built for Kuzu v0.11.3, which sadly +seems may have been the final release of kuzudb. :( ## Usage diff --git a/src/kuzu.nim b/src/kuzu.nim index 85b2278..b82e921 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.2.nim" + outputPath currentSourcePath.parentDir / "kuzu" / "0.11.3.nim" "kuzu.h" else: - include "kuzu/0.11.2.nim" + include "kuzu/0.11.3.nim" import std/files, diff --git a/src/kuzu/0.11.2.nim b/src/kuzu/0.11.3.nim similarity index 100% rename from src/kuzu/0.11.2.nim rename to src/kuzu/0.11.3.nim diff --git a/src/kuzu/constants.nim b/src/kuzu/constants.nim index a342aa5..42d9940 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.2" +const KUZU_VERSION* = "0.6.2" +const KUZU_EXPECTED_LIBVERSION* = "0.11.3" const BLOB_MAXSIZE = 4096 let KUZU_DEFAULT_CONFIG* = kuzu_default_system_config()