Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
prrao87 committed Dec 20, 2024
1 parent c341e8a commit 3184d07
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/content/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ brew install kuzu

Use a tool like cURL to download the latest version of the Kùzu CLI to your local machine. Alternatively,
simply copy-paste [this URL](https://github.com/kuzudb/kuzu/releases/download/v0/kuzu_cli-linux-x86_64.tar.gz)
for x86-64 or [this one](https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-linux-aarch64.tar.gz)
for x86-64 or [this one](https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-linux-aarch64.tar.gz)
for aarch64 into your browser.

**x86-64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-linux-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-linux-x86_64.tar.gz
```

**aarch64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-linux-aarch64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-linux-aarch64.tar.gz
```

Double-click the `kuzu_cli-linux-*.tar.gz` file to extract a file named `kuzu`, and give it
Expand All @@ -51,11 +51,11 @@ executable permissions using the command `chmod +x kuzu`.
<TabItem label="Windows">

Use a tool like cURL to download the latest version of the Kùzu CLI to your local machine. Alternatively,
simply copy-paste [this HTTPS URL](https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-windows-x86_64.zip)
simply copy-paste [this HTTPS URL](https://github.com/kuzudb/kuzu/releases/download/v0.7.1/kuzu_cli-windows-x86_64.zip)
into your browser.

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/kuzu_cli-windows-x86_64.zip
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/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 @@ -142,7 +142,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
</dependency>
```

Expand All @@ -154,7 +154,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
</dependency>
```

Expand All @@ -166,7 +166,7 @@ The latest stable version is available on [Maven Central](https://central.sonaty
<dependency>
<groupId>com.kuzudb</groupId>
<artifactId>kuzu</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
</dependency>
```

Expand Down Expand Up @@ -254,7 +254,7 @@ any additional installation. You just need to specify the library search path fo
<TabItem label="macOS">

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

</TabItem>
Expand All @@ -264,27 +264,27 @@ curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-osx-u
**x86-64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-linux-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-linux-x86_64.tar.gz
```

**aarch64**

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-linux-aarch64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-linux-aarch64.tar.gz
```

**x86-64** ([old ABI](https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html))

```bash
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.0/libkuzu-linux-old_abi-x86_64.tar.gz
curl -L -O https://github.com/kuzudb/kuzu/releases/download/v0.7.1/libkuzu-linux-old_abi-x86_64.tar.gz
```

</TabItem>

<TabItem label="Windows">

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

</TabItem>
Expand Down

0 comments on commit 3184d07

Please sign in to comment.