Skip to content

Commit

Permalink
upgrade to go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange-42 committed Nov 7, 2023
1 parent ce720fa commit 32cb2d5
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Run internal benchmarks
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Benchmark vs. Array of Structs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Build Linux
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Install dependencies
run: |
go get .
Expand All @@ -84,7 +84,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Install dependencies
run: |
go get .
Expand All @@ -103,7 +103,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Run examples
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [[v0.9.0]](https://github.com/mlange-42/arche/compare/v0.8.1...v0.9.0)

### Infrastructure

* Upgraded to Go 1.21 toolchain (#308)

## [[v0.8.1]](https://github.com/mlange-42/arche/compare/v0.8.0...v0.8.1)

### Documentation
Expand Down
4 changes: 3 additions & 1 deletion benchmark/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/mlange-42/arche/benchmark

go 1.20
go 1.21

toolchain go1.21.3

require (
github.com/marioolofo/go-gameengine-ecs v0.9.0
Expand Down
1 change: 1 addition & 0 deletions benchmark/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/wfranczyk/ento v0.1.0 h1:BMuty7VOn8qNp7EbUhlimQXnckuwrjuJSgJ46NFdk2E=
github.com/wfranczyk/ento v0.1.0/go.mod h1:oiJdFEvu66RU8kZwEySB/xfizPLQ/maChXwYPxY3l9o=
github.com/yohamta/donburi v1.3.4 h1:u/Wa+JA9/c/73J9eAvUZgomvbhpl0jZXagM4sjSNImw=
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/mlange-42/arche

go 1.20
go 1.21

toolchain go1.21.3

require github.com/stretchr/testify v1.8.2

Expand Down
4 changes: 3 additions & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
go 1.20
go 1.21

toolchain go1.21.3

use (
.
Expand Down

0 comments on commit 32cb2d5

Please sign in to comment.