Skip to content

Commit

Permalink
multi: Update module requirements to go1.13.
Browse files Browse the repository at this point in the history
This updates various modules to require go1.13 since they make use of
shifts on integers (technically signed shifts although they are only
ever used with positive values) and the upcoming version of go1.18 along
with the latest version of gopls complains about not requiring go1.13.
  • Loading branch information
davecgh committed Mar 10, 2022
1 parent 4a6438a commit 5733fb2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bech32/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/decred/dcrd/bech32

go 1.11
go 1.13
2 changes: 1 addition & 1 deletion blockchain/standalone/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/decred/dcrd/blockchain/standalone/v2

go 1.11
go 1.13

require (
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
Expand Down
2 changes: 1 addition & 1 deletion chaincfg/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/decred/dcrd/chaincfg/v3

go 1.11
go 1.13

require (
github.com/davecgh/go-spew v1.1.1
Expand Down
2 changes: 1 addition & 1 deletion crypto/blake256/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/decred/dcrd/crypto/blake256

go 1.11
go 1.13
2 changes: 1 addition & 1 deletion crypto/ripemd160/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/decred/dcrd/crypto/ripemd160

go 1.11
go 1.13
2 changes: 1 addition & 1 deletion dcrec/edwards/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/decred/dcrd/dcrec/edwards/v2

go 1.11
go 1.13

require github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412
2 changes: 1 addition & 1 deletion dcrjson/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/decred/dcrd/dcrjson/v4

go 1.11
go 1.13

require github.com/decred/dcrd/chaincfg/chainhash v1.0.3

0 comments on commit 5733fb2

Please sign in to comment.