Skip to content

Commit

Permalink
Release 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Feb 16, 2023
1 parent b4ef284 commit bd08708
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions scripts/deno/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit bd08708

Please sign in to comment.