File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Official C# binding for the [Ladybug](https://github.com/ladybugdb/ladybug) embe
44It wraps the native Ladybug C API via P/Invoke and ships prebuilt native libraries for supported
55platforms, so you can run Cypher queries against an embedded graph database directly from .NET.
66
7- > Current package family: ` 0.17.0. 1 ` , built against the Ladybug ` v0.17.0 ` engine.
7+ > Current package family: ` 0.18. 1 ` , built against the Ladybug ` v0.18.1 ` engine.
88
99## Target frameworks
1010
@@ -78,8 +78,8 @@ project under [`cake/`](cake) (run it with the `build.ps1` / `build.sh` bootstra
7878
7979All packages in the family share one version. The first three numeric segments track the upstream engine
8080release, and the optional fourth segment is the .NET package revision for binding-only releases. For
81- example, package ` 0.17.0. 1 ` wraps the Ladybug ` v0.17.0 ` engine; a future binding-only fix over the same
82- engine would be ` 0.17.0.2 ` . Prerelease suffixes are reserved for preview builds.
81+ example, package ` 0.18. 1 ` wraps the Ladybug ` v0.18.1 ` engine; a future binding-only fix over the same
82+ engine would be ` 0.18.1.1 ` . Prerelease suffixes are reserved for preview builds.
8383
8484The package version is defined once in ` version.txt ` at the repo root. Override it with
8585` --package-version <v> ` (the release workflow uses the git tag). The engine release defaults to the first
Original file line number Diff line number Diff line change 33 <PropertyGroup >
44 <!-- Published package version used by the examples. Override with:
55 dotnet run -p:LadybugVersion=<version> -->
6- <LadybugVersion Condition =" '$(LadybugVersion)' == ''" >0.17.0 .1</LadybugVersion >
6+ <LadybugVersion Condition =" '$(LadybugVersion)' == ''" >0.18 .1</LadybugVersion >
77 </PropertyGroup >
88
99</Project >
Original file line number Diff line number Diff line change 33# (liblbug.so) is published next to the app and loaded from the app's own deployment directory.
44FROM mcr.microsoft.com/dotnet/sdk:10.0
55
6- ARG LADYBUG_VERSION=0.17.0-alpha .1
6+ ARG LADYBUG_VERSION=0.18 .1
77
88WORKDIR /src
99COPY nuget.config ./nuget.config
Original file line number Diff line number Diff line change 33# installed system-wide via a Debian package; the app must locate it through the OS dynamic linker.
44FROM mcr.microsoft.com/dotnet/sdk:10.0
55
6- ARG LADYBUG_VERSION=0.17.0-alpha .1
6+ ARG LADYBUG_VERSION=0.18 .1
77
88# unzip: extract liblbug.so from the native nupkg for the .deb. binutils: readelf (SONAME inspection).
99RUN apt-get update \
@@ -21,6 +21,6 @@ RUN dotnet publish app/ConsumerApp.csproj -c Release -r linux-x64 --self-contain
2121 -p:LadybugVersion=${LADYBUG_VERSION} -o /app/publish
2222
2323# Build the .deb at image-build time; installation happens at run time (after the negative control).
24- RUN bash scripts/build-deb.sh /src/feed /tmp 0.17.0
24+ RUN bash scripts/build-deb.sh /src/feed /tmp 0.18.1
2525
2626ENTRYPOINT ["bash", "/src/scripts/run-system.sh"]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ set -euo pipefail
1010
1111FEED=" ${1:? feed dir required} "
1212OUT=" ${2:? output dir required} "
13- VER=" ${3:- 0.17.0 } "
13+ VER=" ${3:- 0.18.1 } "
1414
1515work=" $( mktemp -d) "
1616trap ' rm -rf "$work"' EXIT
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ dotnet run
1818Expected output:
1919
2020```
21- LadybugDB 0.17.0 (storage v41 )
21+ LadybugDB 0.18.1 (storage v42 )
2222
2323name | age
2424Alice is 25 years old
Original file line number Diff line number Diff line change 1- 0.17.0 .1
1+ 0.18 .1
You can’t perform that action at this time.
0 commit comments