Skip to content

Commit 947fdbc

Browse files
sergey-v9adsharma
authored andcommitted
chore: prepare 0.18.1 release
1 parent 7735d91 commit 947fdbc

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Official C# binding for the [Ladybug](https://github.com/ladybugdb/ladybug) embe
44
It wraps the native Ladybug C API via P/Invoke and ships prebuilt native libraries for supported
55
platforms, 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

7979
All packages in the family share one version. The first three numeric segments track the upstream engine
8080
release, 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

8484
The 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

examples/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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>

examples/native-loading/Dockerfile.bundled

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# (liblbug.so) is published next to the app and loaded from the app's own deployment directory.
44
FROM 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
WORKDIR /src
99
COPY nuget.config ./nuget.config

examples/native-loading/Dockerfile.system

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# installed system-wide via a Debian package; the app must locate it through the OS dynamic linker.
44
FROM 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).
99
RUN 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

2626
ENTRYPOINT ["bash", "/src/scripts/run-system.sh"]

examples/native-loading/scripts/build-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -euo pipefail
1010

1111
FEED="${1:?feed dir required}"
1212
OUT="${2:?output dir required}"
13-
VER="${3:-0.17.0}"
13+
VER="${3:-0.18.1}"
1414

1515
work="$(mktemp -d)"
1616
trap 'rm -rf "$work"' EXIT

examples/quickstart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dotnet run
1818
Expected output:
1919

2020
```
21-
LadybugDB 0.17.0 (storage v41)
21+
LadybugDB 0.18.1 (storage v42)
2222
2323
name | age
2424
Alice is 25 years old

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.17.0.1
1+
0.18.1

0 commit comments

Comments
 (0)