From 0dde1cd7f9424ff90fc8da4de0e2e9358e102a26 Mon Sep 17 00:00:00 2001 From: Huangjw <1223644280@qq.com> Date: Tue, 5 Jul 2022 17:30:26 +0800 Subject: [PATCH] chore(docs): update the binary version to v0.1.10 (#3661) * docs(readme): update the binary version to v0.1.10 * update docker version --- Cargo.lock | 2 +- README.md | 6 +++--- src/test_runner/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e8aa75acf3bf7..e96f7318fa7de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4754,7 +4754,7 @@ dependencies = [ [[package]] name = "risingwave_test_runner" -version = "0.1.8" +version = "0.1.10" dependencies = [ "fail", ] diff --git a/README.md b/README.md index 4a418a3f09b53..cc1537ad52f8f 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ There are two ways to install RisingWave: use a pre-built package or compile fro ```shell # Download the pre-built binary -wget https://github.com/singularity-data/risingwave/releases/download/v0.1.8/risingwave-v0.1.8-x86_64-unknown-linux.tar.gz +wget https://github.com/singularity-data/risingwave/releases/download/v0.1.10/risingwave-v0.1.10-x86_64-unknown-linux.tar.gz # Unzip the binary -tar xvf risingwave-v0.1.8-x86_64-unknown-linux.tar.gz +tar xvf risingwave-v0.1.10-x86_64-unknown-linux.tar.gz # Start RisingWave in single-binary playground mode ./risingwave playground ``` @@ -33,7 +33,7 @@ Currently, only x86_64 is supported. We will provide arm64 builds in the future. ```shell # Start RisingWave in single-binary playground mode -docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/singularity-data/risingwave:latest playground +docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/singularity-data/risingwave:v0.1.10 playground ``` **Compile from Source with [RiseDev](docs/developer-guide.md#set-up-the-development-environment) (Linux and macOS)** diff --git a/src/test_runner/Cargo.toml b/src/test_runner/Cargo.toml index cf2939e622afd..8e116d4b95973 100644 --- a/src/test_runner/Cargo.toml +++ b/src/test_runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "risingwave_test_runner" -version = "0.1.8" +version = "0.1.10" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html