From a944834a5e3ce25197dad69ecb87d68f040831e1 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Tue, 27 Oct 2020 09:01:41 -0700 Subject: [PATCH] version: bump to 0.11.0-beta --- release_notes.md | 15 --------------- version.go | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/release_notes.md b/release_notes.md index 0cecee4..7a988ee 100644 --- a/release_notes.md +++ b/release_notes.md @@ -16,21 +16,6 @@ This file tracks release notes for the loop client. #### NewFeatures -* The loop client now labels all its on-chain transactions to make them easily - identifiable in `lnd`'s `listchaintxns` output. - -##### Introducing Autoloop -* This release includes support for opt-in automatic dispatch of loop out swaps, - based on the output of the `Suggestions` endpoint. -* To enable the autolooper, the following command can be used: - `loop setparams --autoout=true --autobudget={budget in sats} --budgetstart={start time for budget}` -* Automatically dispatched swaps are identified in the output of the - `ListSwaps` with the label `[reserved]: autoloop-out`. -* If autoloop is not enabled, the client will log the actions that the - autolooper would have taken if it was enabled, and the `Suggestions` endpoint - can be used to view the exact set of swaps that the autolooper would make if - enabled. - #### Breaking Changes #### Bug Fixes diff --git a/version.go b/version.go index 31505bd..2b30a50 100644 --- a/version.go +++ b/version.go @@ -23,7 +23,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 10 + appMinor uint = 11 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per