Skip to content

Commit a0abcd4

Browse files
committed
Require Go 1.21 as minimal version of Go
1 parent bd3bf5a commit a0abcd4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-20.04
1717
strategy:
1818
matrix:
19-
go: [ "1.20" ]
19+
go: [ 1.21 ]
2020
env:
2121
DISPLAY: ':99.0'
2222
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Pi is under development. Only limited functionality is provided. API is not stab
3939
## How to get started?
4040

4141
1. Install dependencies
42-
* [Go 1.20+](https://go.dev/dl/)
42+
* [Go 1.21+](https://go.dev/dl/)
4343
* If not on Windows, please install additional dependencies for [Linux](docs/install-linux.md) or [macOS](docs/install-macos.md).
4444
2. Try examples from [examples](examples) directory.
4545
3. Create a new game using provided [Github template](https://github.com/elgopher/pi-template).

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/elgopher/pi
22

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/hajimehoshi/ebiten/v2 v2.5.6

0 commit comments

Comments
 (0)