From 9613b7163cde08109dbdec2102227afbf4a9c3af Mon Sep 17 00:00:00 2001 From: Hong Minhee Date: Mon, 13 Feb 2023 02:11:56 +0900 Subject: [PATCH] Release 0.3.5 --- CHANGES.md | 2 +- scripts/deno/mod.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a2ddb99..f4bfa73 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ Seonbi changelog Version 0.3.5 ------------- -To be released. +Released on February 13, 2023. - Official builds for Windows now contain required dynamic libraries (_*.dll_) besides executables (*seonbi.exe* & *seonbi-api.exe*). [[#2]] diff --git a/scripts/deno/mod.ts b/scripts/deno/mod.ts index a17ecc5..ccec4dc 100644 --- a/scripts/deno/mod.ts +++ b/scripts/deno/mod.ts @@ -137,18 +137,18 @@ export type DownloadUrls = Record< const STABLE_DOWNLOAD_URLS: DownloadUrls = { linux: { x86_64: - "https://github.com/dahlia/seonbi/releases/download/0.3.4/seonbi-0.3.3.linux-x86_64.tar.bz2", + "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.linux-x86_64.tar.bz2", aarch64: undefined, }, darwin: { x86_64: - "https://github.com/dahlia/seonbi/releases/download/0.3.4/seonbi-0.3.4.macos-x86_64.tar.bz2", + "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.macos-x86_64.tar.bz2", aarch64: - "https://github.com/dahlia/seonbi/releases/download/0.3.4/seonbi-0.3.4.macos-arm64.tar.bz2", + "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.macos-arm64.tar.bz2", }, windows: { x86_64: - "https://github.com/dahlia/seonbi/releases/download/0.3.4/seonbi-0.3.4.win64.zip", + "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.win64.zip", aarch64: undefined, }, } as const;