From 1c68aa9ed53ec704495a6eae3c25493798606765 Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 27 Dec 2022 19:19:54 +0000 Subject: [PATCH] ci: release changes for release-v0.3.2 --- CHANGELOG.md | 12 ++++++++++++ pkg/brew/bunyan-view.rb | 20 +++++++++++--------- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6361e43..191925d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. +## Changes between v0.3.1 [1d85806d84a9b22a8d55f70ad3c2d8ab9b38859f] and 0.3.2: + * build: fix github release workflow (a75c46c) + * build: add github makefile include (e94e44b) + * build: add github release workflow (8b15821) + * build: improve version updating and brew pkg build (bb92ee1) + * build: turned off interactive and tty on docker tasks (3531031) + * build: add changelog and release notes (cd0a545) + * build: remove hardcoded package name (bb60418) + * build: fix MacOS related make issues (110d153) + * build: further mature make build process (853449b) + * build: fix typo in Makefile (dfef41b) + diff --git a/pkg/brew/bunyan-view.rb b/pkg/brew/bunyan-view.rb index ec23d0c..fe792f3 100644 --- a/pkg/brew/bunyan-view.rb +++ b/pkg/brew/bunyan-view.rb @@ -1,20 +1,22 @@ class BunyanView < Formula desc "A full-featured Rust port of the Node Bunyan structured log file viewer" homepage "https://github.com/dekobon/bunyan-view" - version "0.3.1" + version "0.3.2" + package_name = "bunyan-view" + src_repo = "https://github.com/dekobon/bunyan-view" if OS.mac? and Hardware::CPU.intel? - url "https://github.com/dekobon/bunyan-view/releases/download/v#{version}/bunyan-v#{version}_x86_64-apple-darwin.tar.gz" - sha256 "50dbdaf9543477960df1038ae0cee50cba3fdd5a05da8cfa3e1c5ddc02aa54d7" + url "#{src_repo}/releases/download/v#{version}/#{package_name}_v#{version}_x86_64-apple-darwin.tar.gz" + sha256 "" elsif OS.mac? and Hardware::CPU.arm? - url "https://github.com/dekobon/bunyan-view/releases/download/v#{version}/bunyan-v#{version}_aarch64-apple-darwin.tar.gz" - sha256 "d22e50fc01010219076ae559c2ed12dccde14c835044fcfcf4ba49004d6da87e" + url "#{src_repo}/releases/download/v#{version}/#{package_name}_#{version}_aarch64-apple-darwin.tar.gz" + sha256 "" elsif OS.linux? and Hardware::CPU.intel? - url "https://github.com/dekobon/bunyan-view/releases/download/v#{version}/bunyan-v#{version}_x86_64-unknown-linux-gnu.tar.gz" - sha256 "bc2bf834b3f42193e8930fb96654024909947529a03f81c8c07ef51c72988ab6" + url "#{src_repo}/releases/download/v#{version}/#{package_name}_#{version}_x86_64-unknown-linux-gnu.tar.gz" + sha256 "f763e8efb8205a50f0eac79bec5d4418915411ba813504b76c31c4d5f7f86b65" elsif OS.linux? and Hardware::CPU.arm? and Hardware::CPU.is_64_bit? - url "https://github.com/dekobon/bunyan-view/releases/download/v#{version}/bunyan-v#{version}_aarch64-unknown-linux-gnu.tar.gz" - sha256 "f654d069bb7bc4c7d71104fccf9f94f22c124736964b33063d90b57eb868b779" + url "#{src_repo}/releases/download/v#{version}/#{package_name}_#{version}_aarch64-unknown-linux-gnu.tar.gz" + sha256 "b44bec7ee25bd6f1385ef1737ae28c5c5c0acbc08fb9c85677725c7924221edd" else odie "Unsupported architecture" end