From 45dbd582d124c69bfd3afafa03a094504f2757da Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Mon, 17 May 2021 14:55:09 +0200 Subject: [PATCH] multi: bump lnd min version to v0.11.1-beta The version v0.10.1-beta of lnd is quite old with v0.13.0-beta just being published as RC2. Maintaining backward compatibility in the lndclient library is quite an effort. We decided to merge the v0.11.1 branch into master meaning that all our projects now have this minimum version requirement. --- go.mod | 2 +- go.sum | 4 ++-- loopd/run.go | 2 +- release_notes.md | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 21efb75..0354f4a 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/grpc-ecosystem/grpc-gateway v1.14.3 github.com/jessevdk/go-flags v1.4.0 github.com/lightninglabs/aperture v0.1.6-beta - github.com/lightninglabs/lndclient v0.11.0-5 + github.com/lightninglabs/lndclient v0.11.1-6 github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display github.com/lightningnetwork/lnd v0.13.0-beta.rc2 github.com/lightningnetwork/lnd/cert v1.0.3 diff --git a/go.sum b/go.sum index d69e884..de84452 100644 --- a/go.sum +++ b/go.sum @@ -230,8 +230,8 @@ github.com/lightninglabs/aperture v0.1.6-beta/go.mod h1:9xl4mx778ZAzrB87nLHMqk+X github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf h1:HZKvJUHlcXI/f/O0Avg7t8sqkPo78HFzjmeYFl6DPnc= github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf/go.mod h1:vxmQPeIQxPf6Jf9rM8R+B4rKBqLA2AjttNxkFBL2Plk= github.com/lightninglabs/lndclient v0.11.0-4/go.mod h1:8/cTKNwgL87NX123gmlv3Xh6p1a7pvzu+40Un3PhHiI= -github.com/lightninglabs/lndclient v0.11.0-5 h1:nHDit/3siG8wvzbQPiyGVpu9v5llqThJK1KmG/IZTIw= -github.com/lightninglabs/lndclient v0.11.0-5/go.mod h1:nIQ+lDm7JGRmP7OSeVfhOAyoqD4GA4NYU8GTsTXITbE= +github.com/lightninglabs/lndclient v0.11.1-6 h1:2L+0GIjAShSWsxEsRQ/ZbK+62SF4DBiCpnWBx8HSwyA= +github.com/lightninglabs/lndclient v0.11.1-6/go.mod h1:qVFcrIXxsagpu3RC0SSSdVEs3QVxuv5YiHUYwDauUnc= github.com/lightninglabs/neutrino v0.11.0/go.mod h1:CuhF0iuzg9Sp2HO6ZgXgayviFTn1QHdSTJlMncK80wg= github.com/lightninglabs/neutrino v0.11.1-0.20200316235139-bffc52e8f200/go.mod h1:MlZmoKa7CJP3eR1s5yB7Rm5aSyadpKkxqAwLQmog7N0= github.com/lightninglabs/neutrino v0.12.1 h1:9umzk5kKNc/l3bAyak8ClSRP1qSulnjc6kppLYDnuqk= diff --git a/loopd/run.go b/loopd/run.go index 0234f8e..00bafa3 100644 --- a/loopd/run.go +++ b/loopd/run.go @@ -26,7 +26,7 @@ var ( // listed build tags/subservers need to be enabled. LoopMinRequiredLndVersion = &verrpc.Version{ AppMajor: 0, - AppMinor: 10, + AppMinor: 11, AppPatch: 1, BuildTags: []string{ "signrpc", "walletrpc", "chainrpc", "invoicesrpc", diff --git a/release_notes.md b/release_notes.md index 9a87269..d01e9e5 100644 --- a/release_notes.md +++ b/release_notes.md @@ -17,5 +17,6 @@ This file tracks release notes for the loop client. #### New Features #### Breaking Changes + - Bumped the minimum required version of `lnd` to `v0.11.1-beta`. #### Bug Fixes