Skip to content

Commit

Permalink
ci: release changes for release-v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dekobon committed Dec 27, 2022
1 parent a75c46c commit 1c68aa9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

20 changes: 11 additions & 9 deletions pkg/brew/bunyan-view.rb
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1c68aa9

Please sign in to comment.