Skip to content

Commit

Permalink
Merge branch 'hotfix/2023.5.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Oct 11, 2023
2 parents 33fa307 + f58f96b commit e99663e
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
# go-version-file: ./go.mod
go-version: "^1.21.3"

- run: go install github.com/tcnksm/ghr@latest

Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@ name: Go Build & Test
on:
push:
branches-ignore:
- 'main'
- "main"
tags-ignore:
- '*'
- "*"

jobs:

build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
- name: Set up Go
uses: actions/setup-go@v4
with:
# go-version-file: ./go.mod
go-version: "^1.21.3"

- run: go version
- run: go version

- run: go fmt .
- run: go fmt .

- uses: dominikh/[email protected]
with:
version: "2023.1.2"
install-go: false
- uses: dominikh/[email protected]
with:
version: "2023.1.2"
install-go: false

- name: Test
run: make test
- name: Test
run: make test

- name: Build
run: make
- name: Build
run: make
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

## develop

## 2023.5.1

- [FIX] HTTP/2 Rapid Reset 対策として Go 1.21.3 以上でリリースバイナリを作成するよう修正する
- https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo
- @voluntas

## 2023.5.0

- [ADD] -V で VERSION ファイルを表示する
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Sora は Suzu から送られてきた解析結果を、プッシュ API を経
- Sora は受け取った解析結果をクライアントへプッシュで送信します
- [DataChannel 経由のシグナリング](https://sora-doc.shiguredo.jp/DATA_CHANNEL_SIGNALING) の利用を推奨します
- 音声解析に必要とされる言語コードをクライアントごとに指定できます
- 無限リトライ対応
- mTLS 対応

## 使ってみる
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023.5.0
2023.5.1

0 comments on commit e99663e

Please sign in to comment.