From 23c23716492cf0197eb46bc6cff3f30c4a983d98 Mon Sep 17 00:00:00 2001 From: cn Date: Fri, 7 Jan 2022 12:07:14 +0100 Subject: [PATCH] module: bump minimum Go version to 1.17 --- .github/workflows/ci.yml | 2 +- go.mod | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39833d8..031c662 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: go: - - '1.16' + - '1.17' env: GO111MODULE: on GOPROXY: direct diff --git a/go.mod b/go.mod index fa13903..ffd6e10 100644 --- a/go.mod +++ b/go.mod @@ -1,12 +1,22 @@ module miflorad -go 1.16 +go 1.17 require ( github.com/currantlabs/gatt v0.0.0-20161006170101-f949eac78f4e github.com/davecgh/go-spew v1.1.1 // indirect github.com/eclipse/paho.mqtt.golang v1.3.5 github.com/go-ble/ble v0.0.0-20200120171844-0a73a9da88eb + github.com/gorilla/websocket v1.4.2 // indirect + github.com/mattn/go-colorable v0.1.4 // indirect + github.com/mattn/go-isatty v0.0.10 // indirect + github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect + github.com/mgutz/logxi v0.0.0-20161027140823-aebf8a7d67ab // indirect github.com/pkg/errors v0.9.1 + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/raff/goble v0.0.0-20190909174656-72afc67d6a99 // indirect github.com/stretchr/testify v1.7.0 + golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect + golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect + gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect )