From b8cc098ddb7c4c826906cf95b2b4e7b2f0858fcb Mon Sep 17 00:00:00 2001 From: mahlon Date: Fri, 9 May 2025 04:12:44 +0000 Subject: [PATCH] Bump for 0.10.0 kuzu release. FossilOrigin-Name: b674c818a19410ec687b55b08481fd5b93819bf318acb57774f65efa8b5fbb42 --- USAGE.md | 1 + src/kuzu.nim | 4 ++-- src/kuzu/{0.9.0.nim => 0.10.0.nim} | 0 src/kuzu/constants.nim | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) rename src/kuzu/{0.9.0.nim => 0.10.0.nim} (100%) diff --git a/USAGE.md b/USAGE.md index 91daeea..17f3ede 100644 --- a/USAGE.md +++ b/USAGE.md @@ -33,6 +33,7 @@ versions might work. Don't count too heavily on it. :-) | -------------------- | ------------------------ | | v0.8.2 | v0.1.0 | | v0.9.0 | v0.2.0 | +| v0.10.0 | v0.4.0 | You can use the `kuzuVersionCompatible()` function (along with the `kuzuGetVersion()` and the `KUZU_VERSION` constant) to quickly check if things diff --git a/src/kuzu.nim b/src/kuzu.nim index cbd94ff..d54207d 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.9.0.nim" + outputPath currentSourcePath.parentDir / "kuzu" / "0.10.0.nim" "kuzu.h" else: - include "kuzu/0.9.0.nim" + include "kuzu/0.10.0.nim" import std/strformat, diff --git a/src/kuzu/0.9.0.nim b/src/kuzu/0.10.0.nim similarity index 100% rename from src/kuzu/0.9.0.nim rename to src/kuzu/0.10.0.nim diff --git a/src/kuzu/constants.nim b/src/kuzu/constants.nim index c59f37e..d635104 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.3.0" -const KUZU_EXPECTED_LIBVERSION* = "0.9.0" +const KUZU_VERSION* = "0.4.0" +const KUZU_EXPECTED_LIBVERSION* = "0.10.0" const BLOB_MAXSIZE = 4096 let KUZU_DEFAULT_CONFIG* = kuzu_default_system_config()