Skip to content

Commit 424d96e

Browse files
committed
chore: bump Go to 1.17
1 parent a48f6c4 commit 424d96e

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
strategy:
77
matrix:
8-
go-version: [~1.16, ^1]
8+
go-version: [~1.17, ^1]
99
os: [ubuntu-latest]
1010
runs-on: ${{ matrix.os }}
1111
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ An application to control your Elgato Stream Deck on Linux
3838

3939
### From source
4040

41-
Make sure you have a working Go environment (Go 1.16 or higher is required).
41+
Make sure you have a working Go environment (Go 1.17 or higher is required).
4242
See the [install instructions](https://golang.org/doc/install.html).
4343

4444
To install deckmaster, simply run:

go.mod

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
module github.com/muesli/deckmaster
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/BurntSushi/freetype-go v0.0.0-20160129220410-b763ddbfe298 // indirect
7-
github.com/BurntSushi/graphics-go v0.0.0-20160129215708-b43f31a4a966 // indirect
86
github.com/BurntSushi/toml v1.2.1
97
github.com/atotto/clipboard v0.1.4
108
github.com/bendahl/uinput v1.6.0
11-
github.com/davecgh/go-spew v1.1.1 // indirect
129
github.com/flopp/go-findfont v0.1.0
1310
github.com/godbus/dbus v4.1.0+incompatible
1411
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
@@ -18,10 +15,20 @@ require (
1815
github.com/mitchellh/go-homedir v1.1.0
1916
github.com/muesli/streamdeck v0.4.0
2017
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
21-
github.com/pmezard/go-difflib v1.0.0 // indirect
2218
github.com/shirou/gopsutil v3.21.11+incompatible
19+
golang.org/x/image v0.6.0
20+
)
21+
22+
require (
23+
github.com/BurntSushi/freetype-go v0.0.0-20160129220410-b763ddbfe298 // indirect
24+
github.com/BurntSushi/graphics-go v0.0.0-20160129215708-b43f31a4a966 // indirect
25+
github.com/davecgh/go-spew v1.1.1 // indirect
26+
github.com/go-ole/go-ole v1.2.6 // indirect
27+
github.com/karalabe/hid v1.0.1-0.20190806082151-9c14560f9ee8 // indirect
28+
github.com/pmezard/go-difflib v1.0.0 // indirect
2329
github.com/stretchr/testify v1.2.2 // indirect
2430
github.com/tklauser/go-sysconf v0.3.9 // indirect
31+
github.com/tklauser/numcpus v0.3.0 // indirect
2532
github.com/yusufpapurcu/wmi v1.2.2 // indirect
26-
golang.org/x/image v0.6.0
33+
golang.org/x/sys v0.5.0 // indirect
2734
)

0 commit comments

Comments
 (0)