Update to Ladybug 0.13.0.
This commit is contained in:
parent
e2c64a0746
commit
2ce6e9f41b
7 changed files with 500 additions and 493 deletions
|
|
@ -1,5 +1,11 @@
|
||||||
# Release History for nim-ladybug
|
# 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>
|
## v0.8.0 [2025-11-15] Mahlon E. Smith <mahlon@martini.nu>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ For more information about Ladybug itself, see its
|
||||||
|
|
||||||
$ nimble install ladybug
|
$ 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
|
## Usage
|
||||||
|
|
|
||||||
1
USAGE.md
1
USAGE.md
|
|
@ -46,6 +46,7 @@ October of 2025. Previous versions used a "Kuzu" namespace.
|
||||||
| ----------------------- | --------------------------- |
|
| ----------------------- | --------------------------- |
|
||||||
| v0.12.0 | v0.7.0 |
|
| v0.12.0 | v0.7.0 |
|
||||||
| v0.12.2 | v0.8.0 |
|
| v0.12.2 | v0.8.0 |
|
||||||
|
| v0.13.0 | v0.8.1 |
|
||||||
|
|
||||||
|
|
||||||
You can use the `lbugVersionCompatible()` function (along with the
|
You can use the `lbugVersionCompatible()` function (along with the
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# vim: set et sta sw=4 ts=4 :
|
# vim: set et sta sw=4 ts=4 :
|
||||||
|
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
author = "Mahlon E. Smith"
|
author = "Mahlon E. Smith"
|
||||||
description = "Ladybug is an embedded graph database built for query speed and scalability."
|
description = "Ladybug is an embedded graph database built for query speed and scalability."
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,10 @@ when defined( futharkWrap ):
|
||||||
import futhark, os
|
import futhark, os
|
||||||
|
|
||||||
importc:
|
importc:
|
||||||
outputPath currentSourcePath.parentDir / "lbug" / "0.12.2.nim"
|
outputPath currentSourcePath.parentDir / "lbug" / "0.13.0.nim"
|
||||||
"lbug.h"
|
"lbug.h"
|
||||||
else:
|
else:
|
||||||
include "lbug/0.12.2.nim"
|
include "lbug/0.13.0.nim"
|
||||||
|
|
||||||
import
|
import
|
||||||
std/files,
|
std/files,
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
||||||
# vim: set et sta sw=4 ts=4 :
|
# vim: set et sta sw=4 ts=4 :
|
||||||
|
|
||||||
const LBUG_VERSION* = "0.8.0"
|
const LBUG_VERSION* = "0.8.1"
|
||||||
const LBUG_EXPECTED_LIBVERSION* = "0.12.2"
|
const LBUG_EXPECTED_LIBVERSION* = "0.13.0"
|
||||||
|
|
||||||
let LBUG_DEFAULT_CONFIG* = lbug_default_system_config()
|
let LBUG_DEFAULT_CONFIG* = lbug_default_system_config()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue