From febcf841af657309d97a1356c2467b7bbf8b8c92 Mon Sep 17 00:00:00 2001 From: JanDeDobbeleer Date: Fri, 26 Jul 2024 14:02:22 +0000 Subject: [PATCH] feat: Formula v23.0.2 --- Casks/oh-my-posh.rb | 6 +++--- oh-my-posh.rb | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Casks/oh-my-posh.rb b/Casks/oh-my-posh.rb index 6935deb..5c1c1bf 100644 --- a/Casks/oh-my-posh.rb +++ b/Casks/oh-my-posh.rb @@ -2,11 +2,11 @@ desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" arch arm: "arm64", intel: "amd64" - version "23.0.1" + version "23.0.2" url "https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v#{version}/posh-darwin-#{arch}", verified: "github.com/JanDeDobbeleer/oh-my-posh/" - sha256 arm: "476b09b296dd2c41aac958b4af932e2a8d94892f01d0445966e08db75ac2c5a7", - intel: "7ab141a242f1232d33345e5eed4c5ae3862afee45f1e7476d9ab26f3f467af23" + sha256 arm: "812a41c7a87789e36094bae4d35d36e994175f8103b945c38a1ebdab9eab4828", + intel: "984871b1960650b142be68e2bbb40e1685d6da24312801120948314830b240dd" name "oh-my-posh" binary "posh-darwin-#{arch}", target: "oh-my-posh" auto_updates true diff --git a/oh-my-posh.rb b/oh-my-posh.rb index 5e299df..ce54546 100644 --- a/oh-my-posh.rb +++ b/oh-my-posh.rb @@ -1,18 +1,18 @@ class OhMyPosh < Formula desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" - url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v23.0.1.tar.gz" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v23.0.2.tar.gz" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" - sha256 "2ec5aa1cfe821a0d0c2bc563282c961c0d4479b428c030f58640c03ef7099922" + sha256 "9dba7f9993e255904b42214473588ddb96bea6b8877cccf969399b9add2363b6" license "MIT" - version "23.0.1" + version "23.0.2" depends_on "go@1.22" => :build def install Dir.chdir("src") do ENV["GOPROXY"] = ENV.has_key?("HOMEBREW_GOPROXY") ? ENV["HOMEBREW_GOPROXY"] : "" - system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=23.0.1\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-07-26T08:47:31Z\'\"") + system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=23.0.2\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-07-26T14:02:21Z\'\"") bin.install "oh-my-posh" end mv "themes", prefix