Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

feat(ghr): Release v0.4.0 #22

Merged
merged 1 commit into from
Dec 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Formula/ghr.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
class Ghr < Formula
desc "Yet another repository management with auto-attaching profiles"
homepage "https://github.com/siketyan/ghr"
version "0.3.11"
version "0.4.0"
license "MIT"

on_macos do
if Hardware::CPU.intel?
url "https://github.com/siketyan/ghr/releases/download/v0.3.11/ghr-x86_64-apple-darwin.tar.gz"
sha256 "29d3689f052a9cde9a21f99e1f73c45909712cf130f44d453a1490b9a50be7c9"
url "https://github.com/siketyan/ghr/releases/download/v0.4.0/ghr-x86_64-apple-darwin.tar.gz"
sha256 "f14ede2de28c07a200e9617f3f5693cf7ee5bee0a1dc6fac09549cfa05b13cca"
else
url "https://github.com/siketyan/ghr/releases/download/v0.3.11/ghr-aarch64-apple-darwin.tar.gz"
sha256 "bdf8c1b0695632eecd2b6ce9ebb3d4416163624c31fbe858b5134966207c4444"
url "https://github.com/siketyan/ghr/releases/download/v0.4.0/ghr-aarch64-apple-darwin.tar.gz"
sha256 "cb2645d264be6be73cb3e71f1bcc66127bd769ae07ce135e29dff240389e9de3"
end

def install
Expand All @@ -20,11 +20,11 @@ def install

on_linux do
if Hardware::CPU.intel?
url "https://github.com/siketyan/ghr/releases/download/v0.3.11/ghr-x86_64-unknown-linux-gnu.tar.gz"
sha256 "038825df6e7ac306ed5506481edf0f66433942e238e8bc5521feac2c76be88f3"
url "https://github.com/siketyan/ghr/releases/download/v0.4.0/ghr-x86_64-unknown-linux-gnu.tar.gz"
sha256 "e74401533263de7aae3593b0323d444771ca6b3e1089007f856b5a308b1e769c"
else
url "https://github.com/siketyan/ghr/releases/download/v0.3.11/ghr-aarch64-unknown-linux-gnu.tar.gz"
sha256 "677e6582d25bc3ba9b39a9459635dd24276f978936dbfdaab6a536dc445ecab9"
url "https://github.com/siketyan/ghr/releases/download/v0.4.0/ghr-aarch64-unknown-linux-gnu.tar.gz"
sha256 "0c2ff30d4e561beecb2f7d860263f7328285911038df68d884020601c8c35217"
end

def install
Expand Down
Loading