Skip to content

Commit 91621f6

Browse files
authored
chore: release v0.1.17 (#8215)
1 parent eb2a946 commit 91621f6

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ There are two ways to install RisingWave: use a pre-built package or compile fro
2424

2525
```shell
2626
# Download the pre-built binary
27-
wget https://github.com/risingwavelabs/risingwave/releases/download/v0.1.16/risingwave-v0.1.16-x86_64-unknown-linux.tar.gz
27+
wget https://github.com/risingwavelabs/risingwave/releases/download/v0.1.17/risingwave-v0.1.17-x86_64-unknown-linux.tar.gz
2828
# Unzip the binary
29-
tar xvf risingwave-v0.1.16-x86_64-unknown-linux.tar.gz
29+
tar xvf risingwave-v0.1.17-x86_64-unknown-linux.tar.gz
3030
# Start RisingWave in single-binary playground mode
3131
./risingwave playground
3232
```
@@ -35,7 +35,7 @@ tar xvf risingwave-v0.1.16-x86_64-unknown-linux.tar.gz
3535

3636
```shell
3737
# Start RisingWave in single-binary playground mode
38-
docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/risingwavelabs/risingwave:v0.1.16 playground
38+
docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/risingwavelabs/risingwave:v0.1.17 playground
3939
```
4040

4141
**Compile from Source with [RiseDev](docs/developer-guide.md#set-up-the-development-environment) (Linux and macOS)**

ci/connector-node-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.16
1+
v0.1.17

ci/scripts/release.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ unzip -q awscliv2.zip && ./aws/install && mv /usr/local/bin/aws /bin/aws
3232

3333
echo "--- Build risingwave release binary"
3434
cargo build -p risingwave_cmd_all --features "static-link static-log-level" --profile release
35-
cd target/release && chmod +x risingwave
35+
cargo build --bin risectl --features "static-link static-log-level" --profile release
36+
cd target/release && chmod +x risingwave risectl
3637

3738
echo "--- Upload nightly binary to s3"
3839
if [ "${BUILDKITE_SOURCE}" == "schedule" ]; then
@@ -53,10 +54,14 @@ if [[ -n "${BUILDKITE_TAG+x}" ]]; then
5354
echo "--- Release create"
5455
gh release create "${BUILDKITE_TAG}" --notes "release ${BUILDKITE_TAG}" -d -p
5556

56-
echo "--- Release upload asset"
57+
echo "--- Release upload risingwave asset"
5758
tar -czvf risingwave-"${BUILDKITE_TAG}"-x86_64-unknown-linux.tar.gz risingwave
5859
gh release upload "${BUILDKITE_TAG}" risingwave-"${BUILDKITE_TAG}"-x86_64-unknown-linux.tar.gz
5960

61+
echo "--- Release upload risingwave asset"
62+
tar -czvf risectl-"${BUILDKITE_TAG}"-x86_64-unknown-linux.tar.gz risectl
63+
gh release upload "${BUILDKITE_TAG}" risectl-"${BUILDKITE_TAG}"-x86_64-unknown-linux.tar.gz
64+
6065
echo "--- Release build and upload risingwave connector node jar asset"
6166
git clone https://"$GITHUB_TOKEN"@github.com/risingwavelabs/risingwave-connector-node.git
6267
cd risingwave-connector-node && git checkout ${connector_node_version} && mvn -B package -Dmaven.test.skip=true

0 commit comments

Comments
 (0)