Skip to content

Commit 7b0f670

Browse files
committed
bump v1.10
Signed-off-by: Bugen Zhao <[email protected]>
1 parent fceb957 commit 7b0f670

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Formula/risingwave.rb

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class Risingwave < Formula
22
desc "Distributed SQL database for stream processing"
33
homepage "https://github.com/risingwavelabs/risingwave"
4-
url "https://github.com/risingwavelabs/risingwave/archive/refs/tags/v1.9.1.tar.gz"
5-
sha256 "a2ad286cde11891906082f54ca5edb997382df639acee83e096b921b0d29a642"
4+
url "https://github.com/risingwavelabs/risingwave/archive/refs/tags/v1.10.0.tar.gz"
5+
sha256 "3ecb95e792bd16afa7404b74e3b624b798f4824cbad668fb38d536dabbb8f5e3"
66
license "Apache-2.0"
77
head "https://github.com/risingwavelabs/risingwave.git", branch: "main"
88

@@ -15,18 +15,18 @@ class Risingwave < Formula
1515
depends_on "cmake" => :build
1616
depends_on "node@20" => :build
1717
depends_on "protobuf" => :build
18-
depends_on "rustup-init" => :build
18+
depends_on "rustup" => :build
1919
depends_on "java11"
2020
depends_on "openssl@3"
2121

2222
resource "connector" do
23-
url "https://github.com/risingwavelabs/risingwave/releases/download/v1.9.1/risingwave-v1.9.1-x86_64-unknown-linux-all-in-one.tar.gz"
24-
sha256 "8f88a4754aebd94196e49f67300180ddf2236d88d93da96cd9e053b2f7487fc8"
23+
url "https://github.com/risingwavelabs/risingwave/releases/download/v1.10.0/risingwave-v1.10.0-x86_64-unknown-linux-all-in-one.tar.gz"
24+
sha256 "cf4927c62c2234567a2d87256fee217ae853300e12a2f7e9b28a0c873d823129"
2525
end
2626

2727
def install
2828
# this will install the necessary cargo/rustup toolchain bits in HOMEBREW_CACHE
29-
system "#{Formula["rustup-init"].bin}/rustup-init",
29+
system "#{Formula["rustup"].bin}/rustup",
3030
"-qy", "--no-modify-path",
3131
"--default-toolchain", "none"
3232
ENV.prepend_path "PATH", HOMEBREW_CACHE/"cargo_cache/bin"
@@ -56,6 +56,7 @@ def install
5656
ENV["ENABLE_BUILD_DASHBOARD"] = "1"
5757

5858
system "cargo", "install",
59+
# "--profile", "production", # since the upcoming release 1.11 (or 2.0)
5960
"--bin", "risingwave",
6061
"--features", "rw-static-link",
6162
*std_cargo_args(root: libexec, path: "src/cmd_all")

0 commit comments

Comments
 (0)