From bd08708ff20fa35841d2fcf9475f3663dce4aa1a Mon Sep 17 00:00:00 2001 From: Hong Minhee Date: Thu, 16 Feb 2023 12:49:44 +0900 Subject: [PATCH] Release 0.3.6 --- .github/workflows/build.yaml | 2 +- CHANGES.md | 2 +- scripts/deno/mod.ts | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6648ab8..c1ae444 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -331,7 +331,7 @@ jobs: name: dists-untagged path: /tmp/dists - id: extract-changelog - uses: dahlia/submark@6d84f1b8865362dace8bb268eed15ad73ede4ae4 + uses: dahlia/submark@e21a51982ee1c5ca798edf9b3c25c299f910d606 with: input-file: CHANGES.md heading-level: 2 diff --git a/CHANGES.md b/CHANGES.md index dad3a75..1aa5cb2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ Seonbi changelog Version 0.3.6 ------------- -To be released. +Released on February 16, 2023. - The `iconv` flag became ignored on Windows, because the flag had never worked on Windows. diff --git a/scripts/deno/mod.ts b/scripts/deno/mod.ts index ccec4dc..9b3dfb1 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.5/seonbi-0.3.5.linux-x86_64.tar.bz2", + "https://github.com/dahlia/seonbi/releases/download/0.3.6/seonbi-0.3.6.linux-x86_64.tar.bz2", aarch64: undefined, }, darwin: { x86_64: - "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.macos-x86_64.tar.bz2", + "https://github.com/dahlia/seonbi/releases/download/0.3.6/seonbi-0.3.6.macos-x86_64.tar.bz2", aarch64: - "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.macos-arm64.tar.bz2", + "https://github.com/dahlia/seonbi/releases/download/0.3.6/seonbi-0.3.6.macos-arm64.tar.bz2", }, windows: { x86_64: - "https://github.com/dahlia/seonbi/releases/download/0.3.5/seonbi-0.3.5.win64.zip", + "https://github.com/dahlia/seonbi/releases/download/0.3.6/seonbi-0.3.6.win64.zip", aarch64: undefined, }, } as const;