Wrap kuzu 0.11.3.

This commit is contained in:
Mahlon E. Smith 2025-10-12 14:58:56 -07:00
parent 405b65a95c
commit ee0e8a72c0
Signed by: mahlon
SSH key fingerprint: SHA256:dP84sRGKZRpOOiPD/+GuOq+SHSxEw9qi5BWLQobaHm0
4 changed files with 6 additions and 5 deletions

View file

@ -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

View file

@ -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,

View file

@ -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()