From b7c764036e9846d2ad70e8ee4252ef82e910d167 Mon Sep 17 00:00:00 2001 From: JanDeDobbeleer Date: Mon, 4 Nov 2024 13:59:31 +0000 Subject: [PATCH] feat: Formula v24.0.1 --- 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 b1cacc3..b5dc39e 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 "24.0.0" + version "24.0.1" url "https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v#{version}/posh-darwin-#{arch}", verified: "github.com/JanDeDobbeleer/oh-my-posh/" - sha256 arm: "5fe227f9b0737f865a2a85e55cd9dc2b6a3bc5639ea77ea4642f4e1ce2c839e8", - intel: "23f83551837a7bf65b9c7647c4e597a3ecb102a94bcc5a38f559539ab0b37ea7" + sha256 arm: "b8911648ec4a2872423bd479562b459dd221857c2eb6fc0c8acba060a82d22df", + intel: "95105c7b9fcb40bab3a71065347f67c1b01b24c4622662b0839b339efcbbd0c7" 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 314bd53..816e9f9 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/v24.0.0.tar.gz" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v24.0.1.tar.gz" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" - sha256 "5c722243d432b5ca4b1cb4b85a22a6fa672f2abac1ad529159cef7f115c6f54b" + sha256 "35a535bf7911f29ae6dd703215899d6411ac219514793790ad74ee66a4b5d6b8" license "MIT" - version "24.0.0" + version "24.0.1" 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=24.0.0\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-04T13:36:03Z\'\"") + system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=24.0.1\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-04T13:59:30Z\'\"") bin.install "oh-my-posh" end mv "themes", prefix