From 74c9f1073e69c20d4e08f3b9cd482cd14c10dc2f Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Mon, 7 Feb 2022 08:17:53 -0800 Subject: [PATCH] version: bump version to v0.17.0-beta --- release_notes.md | 8 -------- version.go | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/release_notes.md b/release_notes.md index 28b4365..c71d135 100644 --- a/release_notes.md +++ b/release_notes.md @@ -15,17 +15,9 @@ This file tracks release notes for the loop client. ## Next release #### New Features -* Loop in functionality has been added to AutoLoop. This feature can be enabled - to acquire outgoing capacity on your node automatically, using - `loop setrule --type=in`. At present, autoloop can only be set to loop out - *or* loop in, and cannot manage liquidity in both directions. - -* Use LND's hop hint selector when doing private loop-ins. #### Breaking Changes #### Bug Fixes -* Close local databases when loopd daemon is stopped programmatically. - #### Maintenance diff --git a/version.go b/version.go index 9129053..e0c0992 100644 --- a/version.go +++ b/version.go @@ -26,7 +26,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 16 + appMinor uint = 17 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per