Update to Ladybug 0.13.0.

This commit is contained in:
Mahlon E. Smith 2025-12-15 17:52:33 -08:00
commit 2ce6e9f41b
Signed by: mahlon
SSH key fingerprint: SHA256:dP84sRGKZRpOOiPD/+GuOq+SHSxEw9qi5BWLQobaHm0
7 changed files with 500 additions and 493 deletions

View file

@ -1,5 +1,11 @@
# Release History for nim-ladybug
---
## v0.8.1 [2025-12-15] Mahlon E. Smith <mahlon@martini.nu>
Update to Ladybug v0.13.0. No changes.
---
## v0.8.0 [2025-11-15] Mahlon E. Smith <mahlon@martini.nu>

View file

@ -39,7 +39,7 @@ For more information about Ladybug itself, see its
$ nimble install ladybug
The current version of this library is built for Ladybug v0.12.0.
The current version of this library is built for Ladybug v0.13.0.
## Usage

View file

@ -46,6 +46,7 @@ October of 2025. Previous versions used a "Kuzu" namespace.
| ----------------------- | --------------------------- |
| v0.12.0 | v0.7.0 |
| v0.12.2 | v0.8.0 |
| v0.13.0 | v0.8.1 |
You can use the `lbugVersionCompatible()` function (along with the

View file

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

View file

@ -7,10 +7,10 @@ when defined( futharkWrap ):
import futhark, os
importc:
outputPath currentSourcePath.parentDir / "lbug" / "0.12.2.nim"
outputPath currentSourcePath.parentDir / "lbug" / "0.13.0.nim"
"lbug.h"
else:
include "lbug/0.12.2.nim"
include "lbug/0.13.0.nim"
import
std/files,

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
# vim: set et sta sw=4 ts=4 :
const LBUG_VERSION* = "0.8.0"
const LBUG_EXPECTED_LIBVERSION* = "0.12.2"
const LBUG_VERSION* = "0.8.1"
const LBUG_EXPECTED_LIBVERSION* = "0.13.0"
let LBUG_DEFAULT_CONFIG* = lbug_default_system_config()