-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Set minimum Go versoin to 1.13. (error `%w` handling) * Add `/dist` to git ignore list. * Update all modules to latest releases. * Update Go versions in Travis config. Signed-off-by: Ben Kochie <[email protected]>
- Loading branch information
Showing
5 changed files
with
469 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module github.com/cloudflare/goflow/v3 | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/Shopify/sarama v1.22.0 | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/libp2p/go-reuseport v0.0.1 | ||
github.com/prometheus/client_golang v0.9.2 | ||
github.com/sirupsen/logrus v1.4.1 | ||
github.com/stretchr/testify v1.3.0 | ||
github.com/Shopify/sarama v1.28.0 | ||
github.com/golang/protobuf v1.5.1 | ||
github.com/libp2p/go-reuseport v0.0.2 | ||
github.com/prometheus/client_golang v1.10.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
) |
Oops, something went wrong.