Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/client-apis/c.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Alternatively, here is an example configuration for integrating the pre-built li
cmake_minimum_required(VERSION 3.11)
project(example LANGUAGES C)
ExternalProject_Add(kuzu-prebuilt
URL https://github.com/kuzudb/kuzu/releases/download/v0.10.0/libkuzu-linux-x86_64.tar.gz
URL https://github.com/kuzudb/kuzu/releases/download/v0.11.0/libkuzu-linux-x86_64.tar.gz
URL_HASH SHA256=452599a03c4e6accb797d11bd780a2a88629bddf6635b1703993967d31a0467e
)
ExternalProject_Get_Property(kuzu-prebuilt SOURCE_DIR)
Expand Down
8 changes: 4 additions & 4 deletions src/content/docs/get-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -264,21 +264,21 @@ Kuzu's Java client library is available on [Maven Central](https://central.sonat
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
</dependency>
```

Alternatively, if you are using Gradle, you can add the following snippet to your build.gradle file to include Kuzu's Java client library:

For Groovy DSL:
```groovy
implementation 'com.kuzudb:kuzu:0.10.0'
implementation 'com.kuzudb:kuzu:0.11.0'
```

For Kotlin DSL:

```kotlin
implementation("com.kuzudb:kuzu:0.10.0")
implementation("com.kuzudb:kuzu:0.11.0")
```

Below is an example Gradle project structure for a simple Java application that creates a graph schema and inserts
Expand Down Expand Up @@ -309,7 +309,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.kuzudb:kuzu:0.10.0'
implementation 'com.kuzudb:kuzu:0.11.0'
}
```

Expand Down
20 changes: 10 additions & 10 deletions src/content/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Use a tool like `curl` to download the latest version of the Kuzu CLI to your lo

```bash
# x86-64
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/kuzu_cli-linux-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/kuzu_cli-linux-x86_64.tar.gz
# aarch64
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/kuzu_cli-linux-aarch64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/kuzu_cli-linux-aarch64.tar.gz

tar xzf kuzu_cli-*.tar.gz
```
Expand Down Expand Up @@ -52,7 +52,7 @@ kuzu
Alternatively, you can download the Kuzu CLI directly.

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/kuzu_cli-osx-universal.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/kuzu_cli-osx-universal.tar.gz
tar xzf kuzu_cli-*.tar.gz
./kuzu
```
Expand All @@ -62,11 +62,11 @@ tar xzf kuzu_cli-*.tar.gz
<TabItem label="Windows">

Use a tool like `curl` to download the latest version of the Kuzu CLI to your local machine. Alternatively,
simply open [this URL](https://github.com/kuzudb/kuzu/releases/download/v0.10.0/kuzu_cli-windows-x86_64.zip)
simply open [this URL](https://github.com/kuzudb/kuzu/releases/download/v0.11.0/kuzu_cli-windows-x86_64.zip)
in your browser.

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/kuzu_cli-windows-x86_64.zip
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/kuzu_cli-windows-x86_64.zip
```

Right-click on the `kuzu_cli-xxx.zip` file and click on **Extract All**. This will create a directory
Expand Down Expand Up @@ -149,7 +149,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
</dependency>
```

Expand Down Expand Up @@ -199,9 +199,9 @@ program by adding the directory to your build system's search paths.

```bash
# x86-64
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/libkuzu-linux-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/libkuzu-linux-x86_64.tar.gz
# aarch64
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/libkuzu-linux-aarch64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/libkuzu-linux-aarch64.tar.gz

tar xzf libkuzu-*.tar.gz
```
Expand All @@ -211,7 +211,7 @@ tar xzf libkuzu-*.tar.gz
<TabItem label="macOS">

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/libkuzu-osx-universal.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/libkuzu-osx-universal.tar.gz

tar xzf libkuzu-*.tar.gz
```
Expand All @@ -221,7 +221,7 @@ tar xzf libkuzu-*.tar.gz
<TabItem label="Windows">

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.10.0/libkuzu-windows-x86_64.zip
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.11.0/libkuzu-windows-x86_64.zip
```

</TabItem>
Expand Down