From 2f8ef59537aaf9df55499f9b358ae5b71cc9ab8b Mon Sep 17 00:00:00 2001 From: Sayan Nandan Date: Wed, 24 Apr 2024 11:54:59 +0000 Subject: [PATCH] version: Update references to v0.8.2 --- docs/2.installation.md | 6 +++--- docusaurus.config.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/2.installation.md b/docs/2.installation.md index 787a3f6a0..bc7d17fe6 100644 --- a/docs/2.installation.md +++ b/docs/2.installation.md @@ -20,7 +20,7 @@ However, we strongly recommend **not** using it outside testing environments. To use native binaries you need to download a bundle which is simply a ZIP file with all the necessary binaries that you'll ever need to develop on and deploy Skytable. -1. **First download the latest bundle** for your platform. You can find [download links on the releases page](https://github.com/skytable/skytable/releases). +1. **First download the latest bundle** for your platform. You can find [download links on the releases page](https://github.com/skytable/skytable/releases/v0.8.2). 2. **Unzip the ZIP file**. You'll find the following binaries in the extracted archive: - `skyd`: This is the database server binary which when started runs as a daemon, serving requests - `skysh`: This is the Skytable shell and it provides a very helpful interactive REPL database client @@ -72,7 +72,7 @@ The package will: 2. **Start the container**: ```shell - docker run -d --name skydb -p 2003:2003 skytable/skytable:latest + docker run -d --name skydb -p 2003:2003 skytable/skytable:v0.8.2 ``` :::tip @@ -92,7 +92,7 @@ message with the generated password. docker run -d --name skydb \ -v $HOME/docker-containers/skytable:/var/lib/skytable \ -p 2003:2003 \ - skytable/skytable:latest + skytable/skytable:v0.8.2 ``` Explanation: diff --git a/docusaurus.config.js b/docusaurus.config.js index c5d9136bf..2009fe1cd 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -125,7 +125,7 @@ module.exports = { lastVersion: 'current', versions: { current: { - label: '0.8.1', + label: '0.8.2', path: '/', } },