From c44a14c6b4701d024e1616819f5b822f61c9e646 Mon Sep 17 00:00:00 2001 From: Rob Zwissler Date: Mon, 26 Feb 2024 14:43:09 -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 dd08520..1f6c534 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.1.0-pre0/sver" - sha256 "7a9851e9d00d02e1402e45f5e6467c2a3344c6ece6940f4f4b41538d266f3a47" + url "https://github.com/robzr/sver/releases/download/v1.1.0-pre1/sver" + sha256 "e7d1f9bb1ff2e5cf8be8feab1d9fd4a2b6b0ed5283243d636ed9d06b12c4bbc8" license "CC-BY-SA-3.0" def install @@ -10,6 +10,6 @@ def install end test do - assert_match "v1.1.0-pre0", shell_output("#{bin}/sver version") + assert_match "v1.1.0-pre1", shell_output("#{bin}/sver version") end end