Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CC-29767] update ccloud version for mac. #235

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Formula/ccloud.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
class Ccloud < Formula
desc "CockroachDB Cloud CLI"
homepage "https://www.cockroachlabs.com"
version "0.6.12"
version "0.7.14"

on_macos do
on_intel do
url "https://binaries.cockroachdb.com/ccloud/ccloud_darwin-amd64_0.6.12.tar.gz"
sha256 "0d76c7f3ca97b486eec1f106cf43afa0bd7206a1fd4cf0a945682e52731cc7f1"
url "https://binaries.cockroachdb.com/ccloud/ccloud_darwin-amd64_0.7.14.tar.gz"
sha256 "58b3afed0dc1aa892c8c519abb70ace10bf5faac9e82a8b4be93e654f07de692"
end
on_arm do
url "https://binaries.cockroachdb.com/ccloud/ccloud_darwin-arm64_0.6.12.tar.gz"
sha256 "40db5fa4f6117d3459f78b6a16510e90fe83876a0fbb375f5fac9436f12d74b5"
url "https://binaries.cockroachdb.com/ccloud/ccloud_darwin-arm64_0.7.14.tar.gz"
sha256 "25c3760d4a21b69a39ab0460654190ee9bb2fe37477985f9a3080fe0171d194a"
end
end

Expand All @@ -23,7 +23,7 @@ def install

test do
output = shell_output("#{bin}/ccloud version", 0)
assert_match "ccloud 0.6.12", output
assert_match "ccloud 0.7.14", output
end
end

Loading