From 448bf8c9bf08d5235fb3a0d0fc2347b447c53780 Mon Sep 17 00:00:00 2001 From: Pierre Rochard Date: Tue, 16 Apr 2019 18:22:04 -0400 Subject: [PATCH 1/2] bump LND version --- node_launcher/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_launcher/constants.py b/node_launcher/constants.py index c0b03a26..6a44a118 100644 --- a/node_launcher/constants.py +++ b/node_launcher/constants.py @@ -3,10 +3,10 @@ import platform from typing import Dict -NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 4))) +NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 5))) TARGET_BITCOIN_RELEASE = 'v0.17.1' -TARGET_LND_RELEASE = 'v0.6-beta-rc4' +TARGET_LND_RELEASE = 'v0.6-beta' class StringConstant(object): From 065a9f2a2c5abc17fd1393fe5fd73ebd39ad216a Mon Sep 17 00:00:00 2001 From: Pierre Rochard Date: Tue, 10 Sep 2019 20:34:18 -0400 Subject: [PATCH 2/2] Bump LND and bitcoind versions --- node_launcher/constants.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node_launcher/constants.py b/node_launcher/constants.py index 6a44a118..ff1ec920 100644 --- a/node_launcher/constants.py +++ b/node_launcher/constants.py @@ -3,10 +3,10 @@ import platform from typing import Dict -NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 5))) +NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 6))) -TARGET_BITCOIN_RELEASE = 'v0.17.1' -TARGET_LND_RELEASE = 'v0.6-beta' +TARGET_BITCOIN_RELEASE = 'v0.18.1' +TARGET_LND_RELEASE = 'v0.7.1-beta' class StringConstant(object):