From 8c697bfc75d04145284e6decda07b82158145376 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Mon, 5 Aug 2024 23:13:49 -0700 Subject: [PATCH] Update soroban-cli to v21.3.0 (#47) --- Formula/soroban-cli.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/soroban-cli.rb b/Formula/soroban-cli.rb index b7239f3..d7e1e30 100644 --- a/Formula/soroban-cli.rb +++ b/Formula/soroban-cli.rb @@ -1,7 +1,7 @@ class SorobanCli < Formula desc "CLI for building for and interacting with the Stellar network" homepage "https://developers.stellar.org" - url "https://github.com/stellar/stellar-cli.git", tag: "v21.2.0" + url "https://github.com/stellar/stellar-cli.git", tag: "v21.3.0" head "https://github.com/stellar/stellar-cli.git", branch: "main" depends_on "rust" => :build @@ -15,7 +15,7 @@ def install end test do - assert_match "stellar 21.2.0", shell_output("#{bin}/soroban version") - assert_match "stellar 21.2.0", shell_output("#{bin}/stellar version") + assert_match "stellar 21.3.0", shell_output("#{bin}/soroban version") + assert_match "stellar 21.3.0", shell_output("#{bin}/stellar version") end end