From ff4b57534384a1fc922225a8faf746e8c28836a3 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Fri, 14 Jul 2023 12:38:09 -0400 Subject: [PATCH 1/2] lnd: bump base image to v0.16.4-beta I think all that's required to trigger new image builds is pushing a tag, but this bumps all RC references to the final release, just to be sure. --- Dockerfile | 2 +- dev.Dockerfile | 2 +- go.mod | 2 +- go.sum | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f2be7f..0c17f37 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG GO_VERSION=1.20.3 ARG BASE_IMAGE=lightninglabs/lnd -ARG BASE_IMAGE_VERSION=v0.16.4-beta.rc1 +ARG BASE_IMAGE_VERSION=v0.16.4-beta FROM golang:${GO_VERSION}-alpine as builder diff --git a/dev.Dockerfile b/dev.Dockerfile index 5afc8b9..9b05a93 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,6 +1,6 @@ ARG GO_VERSION=1.20.3 ARG BASE_IMAGE=lightninglabs/lnd -ARG BASE_IMAGE_VERSION=v0.16.4-beta.rc1 +ARG BASE_IMAGE_VERSION=v0.16.4-beta FROM golang:${GO_VERSION}-alpine as builder diff --git a/go.mod b/go.mod index 11feb37..44f249d 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/jessevdk/go-flags v1.4.0 github.com/kkdai/bstream v1.0.0 github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display - github.com/lightningnetwork/lnd v0.16.4-beta.rc1 + github.com/lightningnetwork/lnd v0.16.4-beta github.com/stretchr/testify v1.8.1 google.golang.org/grpc v1.41.0 k8s.io/api v0.18.3 diff --git a/go.sum b/go.sum index 0feb8b2..1cbd793 100644 --- a/go.sum +++ b/go.sum @@ -428,8 +428,8 @@ github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display h1:RZJ8H4ueU/aQ github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display/go.mod h1:2oKOBU042GKFHrdbgGiKax4xVrFiZu51lhacUZQ9MnE= github.com/lightningnetwork/lightning-onion v1.2.1-0.20221202012345-ca23184850a1 h1:Wm0g70gkcAu2pGpNZwfWPSVOY21j8IyYsNewwK4OkT4= github.com/lightningnetwork/lightning-onion v1.2.1-0.20221202012345-ca23184850a1/go.mod h1:7dDx73ApjEZA0kcknI799m2O5kkpfg4/gr7N092ojNo= -github.com/lightningnetwork/lnd v0.16.4-beta.rc1 h1:L8ktsv1lM5esVtiOlEtOBqU1dCoDckbm0FkcketBskQ= -github.com/lightningnetwork/lnd v0.16.4-beta.rc1/go.mod h1:sK9F98TpFuO/fjLCX4jEjc65qr2GZGs8IquVde1N46I= +github.com/lightningnetwork/lnd v0.16.4-beta h1:St6QUzRCjOR6vc5JYZ56TdJ/OiYkAeKK+X2SD9crprI= +github.com/lightningnetwork/lnd v0.16.4-beta/go.mod h1:sK9F98TpFuO/fjLCX4jEjc65qr2GZGs8IquVde1N46I= github.com/lightningnetwork/lnd/clock v1.0.1/go.mod h1:KnQudQ6w0IAMZi1SgvecLZQZ43ra2vpDNj7H/aasemg= github.com/lightningnetwork/lnd/clock v1.1.0 h1:/yfVAwtPmdx45aQBoXQImeY7sOIEr7IXlImRMBOZ7GQ= github.com/lightningnetwork/lnd/clock v1.1.0/go.mod h1:KnQudQ6w0IAMZi1SgvecLZQZ43ra2vpDNj7H/aasemg= From eaa835588eb03a6e81290a34d05bd623db4b5bde Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Fri, 14 Jul 2023 16:57:33 -0400 Subject: [PATCH 2/2] bump lndinit version to v0.1.15-beta --- version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.go b/version.go index 2884c36..259ed31 100644 --- a/version.go +++ b/version.go @@ -32,7 +32,7 @@ const ( AppMinor uint = 1 // AppPatch defines the application patch for this binary. - AppPatch uint = 14 + AppPatch uint = 15 // AppPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.