Skip to content

Commit 32f1f26

Browse files
committed
multi: bump lnd to version v0.13.0-beta.rc2
This commit bumps the _compile time_ version of lnd to v0.13.0-beta.rc2. This does not have an effect on the user, the run time backward compatibility will be preserved. Only the next commit will bump that minimum version.
1 parent db56b31 commit 32f1f26

File tree

6 files changed

+216
-94
lines changed

6 files changed

+216
-94
lines changed

go.mod

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
11
module github.com/lightninglabs/loop
22

33
require (
4-
github.com/btcsuite/btcd v0.21.0-beta.0.20201208033208-6bd4c64a54fa
4+
github.com/btcsuite/btcd v0.21.0-beta.0.20210429225535-ce697fe7e82b
55
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
6-
github.com/btcsuite/btcutil v1.0.2
7-
github.com/btcsuite/btcwallet/wtxmgr v1.2.0
6+
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
7+
github.com/btcsuite/btcwallet/wtxmgr v1.3.0
88
github.com/coreos/bbolt v1.3.3
99
github.com/fortytw2/leaktest v1.3.0
10-
github.com/golang/protobuf v1.3.2
10+
github.com/golang/protobuf v1.4.3
1111
github.com/grpc-ecosystem/grpc-gateway v1.14.3
1212
github.com/jessevdk/go-flags v1.4.0
1313
github.com/lightninglabs/aperture v0.1.6-beta
1414
github.com/lightninglabs/lndclient v0.11.0-5
15-
github.com/lightninglabs/protobuf-hex-display v1.3.3-0.20191212020323-b444784ce75d
16-
github.com/lightningnetwork/lnd v0.12.0-beta.rc3
15+
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display
16+
github.com/lightningnetwork/lnd v0.13.0-beta.rc2
1717
github.com/lightningnetwork/lnd/cert v1.0.3
1818
github.com/lightningnetwork/lnd/clock v1.0.1
1919
github.com/lightningnetwork/lnd/queue v1.0.4
2020
github.com/lightningnetwork/lnd/ticker v1.0.0
21-
github.com/stretchr/testify v1.5.1
21+
github.com/stretchr/testify v1.7.0
2222
github.com/urfave/cli v1.20.0
23-
golang.org/x/net v0.0.0-20191112182307-2180aed22343
23+
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
2424
google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c
25-
google.golang.org/grpc v1.25.1
25+
google.golang.org/grpc v1.29.1
2626
gopkg.in/macaroon-bakery.v2 v2.0.1
2727
gopkg.in/macaroon.v2 v2.1.0
2828
)
2929

30+
// Fix incompatibility of etcd go.mod package.
31+
// See https://github.com/etcd-io/etcd/issues/11154
32+
replace go.etcd.io/etcd => go.etcd.io/etcd v0.5.0-alpha.5.0.20201125193152-8a03d2e9614b
33+
3034
go 1.15

0 commit comments

Comments
 (0)