Update for v0.6.1.

This commit is contained in:
Mahlon E. Smith 2025-07-19 13:46:18 -07:00
parent ebd0d3dc45
commit d2bb8f5c46
Signed by: mahlon
SSH key fingerprint: SHA256:dP84sRGKZRpOOiPD/+GuOq+SHSxEw9qi5BWLQobaHm0
4 changed files with 28 additions and 10 deletions

15
.gitignore vendored
View file

@ -1,13 +1,14 @@
experiments/imdb/*
!experiments/imdb/*.nim
!experiments/imdb/Makefile
nimble.paths
config.nims config.nims
tmp/* docs/*
experiments/imdb/*
!experiments/imdb/Makefile
!experiments/imdb/*.nim
kuzu kuzu
nimble.paths
nimcache/* nimcache/*
tests/*
!tests/*/t_*.nim
testresults/* testresults/*
testresults.html testresults.html
tests/*
!tests/*/t_*.nim
tmp/*

View file

@ -1,5 +1,21 @@
# Release History for nim-kuzu # Release History for nim-kuzu
---
## v0.6.1 [2025-07-19] Mahlon E. Smith <mahlon@martini.nu>
Bugfix:
- Prefetch query result sets into the primary query object,
so iteration can act regularly (breaks and restarts operate
as one would expect), and GC works properly.
Enhancement:
- Perform file magic checks for better error messaging when
attaching to an existing disk-based database.
--- ---
## v0.6.0 [2025-07-17] Mahlon E. Smith <mahlon@martini.nu> ## v0.6.0 [2025-07-17] Mahlon E. Smith <mahlon@martini.nu>
@ -11,9 +27,10 @@ Enhancement:
Minutiae: Minutiae:
- Add a KuzuInterationError, to disambiguate iteration errors from - Add a KuzuIterationError, to disambiguate iteration errors from
IndexErrors. IndexErrors.
--- ---
## v0.5.0 [2025-07-13] Mahlon E. Smith <mahlon@martini.nu> ## v0.5.0 [2025-07-13] Mahlon E. Smith <mahlon@martini.nu>

View file

@ -1,6 +1,6 @@
# vim: set et sta sw=4 ts=4 : # vim: set et sta sw=4 ts=4 :
version = "0.6.0" version = "0.6.1"
author = "Mahlon E. Smith" author = "Mahlon E. Smith"
description = "Kuzu is an embedded graph database built for query speed and scalability." description = "Kuzu is an embedded graph database built for query speed and scalability."
license = "BSD-3-Clause" license = "BSD-3-Clause"

View file

@ -1,6 +1,6 @@
# vim: set et sta sw=4 ts=4 : # vim: set et sta sw=4 ts=4 :
const KUZU_VERSION* = "0.6.0" const KUZU_VERSION* = "0.6.1"
const KUZU_EXPECTED_LIBVERSION* = "0.11.0" const KUZU_EXPECTED_LIBVERSION* = "0.11.0"
const BLOB_MAXSIZE = 4096 const BLOB_MAXSIZE = 4096