From 79cb10f95572cad60c1dde8e9a1a5f82723fc602 Mon Sep 17 00:00:00 2001 From: Rob Zwissler Date: Fri, 23 Feb 2024 15:11:46 -0800 Subject: [PATCH] update Homebrew formula --- homebrew/sver.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homebrew/sver.rb b/homebrew/sver.rb index c33153a..dd08520 100644 --- a/homebrew/sver.rb +++ b/homebrew/sver.rb @@ -1,8 +1,8 @@ class Sver < Formula desc "Semver (Semantic Version) parsing & utility script/function library in pure bash" homepage "https://github.com/robzr/sver" - url "https://github.com/robzr/sver/releases/download/v1.0.0/sver" - sha256 "a5571a9bac577819943fb72c23ce7a9989f8e61b39f68522b5625dba4586b77a" + url "https://github.com/robzr/sver/releases/download/v1.1.0-pre0/sver" + sha256 "7a9851e9d00d02e1402e45f5e6467c2a3344c6ece6940f4f4b41538d266f3a47" license "CC-BY-SA-3.0" def install @@ -10,6 +10,6 @@ def install end test do - assert_match "v1.0.0", shell_output("#{bin}/sver version") + assert_match "v1.1.0-pre0", shell_output("#{bin}/sver version") end end