mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-03 17:26:57 +01:00
Upgrade to go 1.16 for the left over packages
Upgraded the go to 1.16 for the rest of the packages.
This commit is contained in:
parent
e6c65f1cbd
commit
06433d351e
10 changed files with 27 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
module github.com/lightningnetwork/lnd/cert
|
||||
|
||||
go 1.13
|
||||
go 1.16
|
||||
|
||||
require github.com/stretchr/testify v1.5.1
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
module github.com/lightningnetwork/lnd/clock
|
||||
|
||||
go 1.13
|
||||
go 1.16
|
||||
|
||||
require github.com/stretchr/testify v1.7.0
|
||||
|
|
11
clock/go.sum
Normal file
11
clock/go.sum
Normal file
|
@ -0,0 +1,11 @@
|
|||
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
|
||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
|
@ -277,6 +277,8 @@ messages directly. There is no routing/path finding involved.
|
|||
Applications that use the iOS build will have to be updated to include
|
||||
an `xcframework` instead of a `framework`.
|
||||
|
||||
* [Upgrade the sub packages to 1.16](https://github.com/lightningnetwork/lnd/pull/5813)
|
||||
|
||||
## Documentation
|
||||
|
||||
* [Outdated warning about unsupported pruning was replaced with clarification that LND **does**
|
||||
|
|
12
go.mod
12
go.mod
|
@ -40,12 +40,12 @@ require (
|
|||
github.com/lightninglabs/neutrino v0.12.3
|
||||
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display
|
||||
github.com/lightningnetwork/lightning-onion v1.0.2-0.20210520211913-522b799e65b1
|
||||
github.com/lightningnetwork/lnd/cert v1.0.3
|
||||
github.com/lightningnetwork/lnd/clock v1.0.1
|
||||
github.com/lightningnetwork/lnd/healthcheck v1.0.2
|
||||
github.com/lightningnetwork/lnd/kvdb v1.1.0
|
||||
github.com/lightningnetwork/lnd/queue v1.0.4
|
||||
github.com/lightningnetwork/lnd/ticker v1.0.0
|
||||
github.com/lightningnetwork/lnd/cert v1.1.0
|
||||
github.com/lightningnetwork/lnd/clock v1.1.0
|
||||
github.com/lightningnetwork/lnd/healthcheck v1.1.0
|
||||
github.com/lightningnetwork/lnd/kvdb v1.2.0
|
||||
github.com/lightningnetwork/lnd/queue v1.1.0
|
||||
github.com/lightningnetwork/lnd/ticker v1.1.0
|
||||
github.com/ltcsuite/ltcd v0.0.0-20190101042124-f37f8bf35796
|
||||
github.com/mattn/go-runewidth v0.0.9 // indirect
|
||||
github.com/miekg/dns v1.1.43
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/lightningnetwork/lnd/healthcheck
|
||||
|
||||
go 1.15
|
||||
go 1.16
|
||||
|
||||
require (
|
||||
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
||||
|
|
|
@ -35,4 +35,4 @@ replace github.com/ulikunitz/xz => github.com/ulikunitz/xz v0.5.8
|
|||
// https://deps.dev/advisory/OSV/GO-2021-0053?from=%2Fgo%2Fgithub.com%252Fgogo%252Fprotobuf%2Fv1.3.1
|
||||
replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
|
||||
|
||||
go 1.15
|
||||
go 1.16
|
||||
|
|
|
@ -509,7 +509,6 @@ golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=
|
|||
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
||||
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||
golang.org/x/mod v0.4.2 h1:Gz96sIWK3OalVv/I/qNygP42zyoKp3xptRVCWRFEBvo=
|
||||
golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
|
|
|
@ -4,4 +4,4 @@ require github.com/lightningnetwork/lnd/ticker v1.0.0
|
|||
|
||||
replace github.com/lightningnetwork/lnd/ticker v1.0.0 => ../ticker
|
||||
|
||||
go 1.12
|
||||
go 1.16
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module github.com/lightningnetwork/lnd/ticker
|
||||
|
||||
go 1.12
|
||||
go 1.16
|
||||
|
|
Loading…
Add table
Reference in a new issue