From c81b4c47af76f83615ab41ece96ea2980661cd64 Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Wed, 13 Dec 2023 14:23:19 +0000 Subject: [PATCH] infra: bump to homebrew tap release to 0.4.37 [generated] [skip ci] Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- Formula/openllm.rb | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Formula/openllm.rb b/Formula/openllm.rb index 8ee18ab0d..af2177a50 100644 --- a/Formula/openllm.rb +++ b/Formula/openllm.rb @@ -4,37 +4,37 @@ class Openllm < Formula desc "OpenLLM: Operating LLMs in production" homepage "https://github.com/bentoml/OpenLLM" - version "0.4.36" + version "0.4.37" license "Apache-2.0" head "https://github.com/bentoml/OpenLLM, branch: main" - url "https://github.com/bentoml/OpenLLM/archive/v0.4.36.tar.gz" - sha256 "f828d5bc92855fcfcf4fec5a087104ae1e73afc7eb14cef1dcca825392e21977" + url "https://github.com/bentoml/OpenLLM/archive/v0.4.37.tar.gz" + sha256 "b33b43a9a4b487770fecfe92b6f221e084cbb5d4e01148e6499d9cf1c9d1f435" on_linux do - url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.36/openllm-0.4.36-x86_64-unknown-linux-musl.tar.gz" - sha256 "2a76a18022b8d262e916213b53e91ec3591a18d4fba462b0a76ef645499f2440" + url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.37/openllm-0.4.37-x86_64-unknown-linux-musl.tar.gz" + sha256 "cc4721a4d700a767582c94421b6f60be9d63fa08097421179f25b227e718acc0" end on_macos do on_arm do - url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.36/openllm-0.4.36-aarch64-apple-darwin.tar.gz" - sha256 "b8c9857005fce474a715dbdd06674fd5ab958f0860b16c011d1c3e420147d73d" + url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.37/openllm-0.4.37-aarch64-apple-darwin.tar.gz" + sha256 "afbfa57d87ecf68e5182e941d2b96fec548981d652b854561ed13c246db0a583" end on_intel do - url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.36/openllm-0.4.36-x86_64-apple-darwin.tar.gz" - sha256 "61c68b7ef2d11dadead66c8fac1d5767508f93dfc2c9c1c08cf410be974da74b" + url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.37/openllm-0.4.37-x86_64-apple-darwin.tar.gz" + sha256 "dc656ec09680d2700436bd3dca48f808ba13ffef71de01660f72696f4f106f39" end end def install on_linux do - bin.install "openllm-0.4.36-x86_64-unknown-linux-musl" => "openllm" + bin.install "openllm-0.4.37-x86_64-unknown-linux-musl" => "openllm" end on_macos do on_arm do - bin.install "openllm-0.4.36-aarch64-apple-darwin" => "openllm" + bin.install "openllm-0.4.37-aarch64-apple-darwin" => "openllm" end on_intel do - bin.install "openllm-0.4.36-x86_64-apple-darwin" => "openllm" + bin.install "openllm-0.4.37-x86_64-apple-darwin" => "openllm" end end ohai "To get started, run: 'openllm --help'"