From a3c2cdcdc9cd76d210a13c55c535e588d221b7ec Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Sun, 12 Nov 2023 07:51:23 +0000 Subject: [PATCH] infra: bump to homebrew tap release to 0.4.3 [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 f62d6457..dfdd8e39 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.2" + version "0.4.3" license "Apache-2.0" head "https://github.com/bentoml/OpenLLM, branch: main" - url "https://github.com/bentoml/OpenLLM/archive/v0.4.2.tar.gz" - sha256 "8971d50529d41aac78fe0d332ae7660765507fb131826f1ddd5b361de5f11bbd" + url "https://github.com/bentoml/OpenLLM/archive/v0.4.3.tar.gz" + sha256 "cf445145e83f79894095981866c4b6fa3c5db18f54bf4198e921bbd2c247e5b9" on_linux do - url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.2/openllm-0.4.2-x86_64-unknown-linux-musl.tar.gz" - sha256 "8062b80faaf6eb890184b5a33269bca79563b990bd46bcc2fc4e14fa7051b923" + url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.3/openllm-0.4.3-x86_64-unknown-linux-musl.tar.gz" + sha256 "2fd1a8d87558ec621a7856d32a54a8c99cf656913ea8f69bd6f000404a58ea64" end on_macos do on_arm do - url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.2/openllm-0.4.2-aarch64-apple-darwin.tar.gz" - sha256 "62992cf566aa48ea88ec194e1ef031c7519fde0db4881488c7efba57eaeb8dbe" + url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.3/openllm-0.4.3-aarch64-apple-darwin.tar.gz" + sha256 "594cf5127abf02197be8d46877822102a3257b5d529e77f025ab83ae2666f401" end on_intel do - url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.2/openllm-0.4.2-x86_64-apple-darwin.tar.gz" - sha256 "cbfc8143845caacd8a4a0b9c3692fa542ca1fb66cb91fd94ba7bf150d9c120ab" + url "https://github.com/bentoml/OpenLLM/releases/download/v0.4.3/openllm-0.4.3-x86_64-apple-darwin.tar.gz" + sha256 "657a253ecd922128c0bb655bc09304688281aaececa9760c3ace6730f628e33a" end end def install on_linux do - bin.install "openllm-0.4.2-x86_64-unknown-linux-musl" => "openllm" + bin.install "openllm-0.4.3-x86_64-unknown-linux-musl" => "openllm" end on_macos do on_arm do - bin.install "openllm-0.4.2-aarch64-apple-darwin" => "openllm" + bin.install "openllm-0.4.3-aarch64-apple-darwin" => "openllm" end on_intel do - bin.install "openllm-0.4.2-x86_64-apple-darwin" => "openllm" + bin.install "openllm-0.4.3-x86_64-apple-darwin" => "openllm" end end ohai "To get started, run: 'openllm --help'"