From db7a2cf0a6736e1de24b0d4aa210f06ef2cc64c9 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:09:28 +1000 Subject: [PATCH] fix --- 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 fca79e4..b7239f3 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.4.0" + url "https://github.com/stellar/stellar-cli.git", tag: "v21.2.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.4.0", shell_output("#{bin}/soroban version") - assert_match "stellar 21.4.0", shell_output("#{bin}/stellar version") + assert_match "stellar 21.2.0", shell_output("#{bin}/soroban version") + assert_match "stellar 21.2.0", shell_output("#{bin}/stellar version") end end