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;