From c13001737a513efca304ea2aea133d766404be3c Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Tue, 8 Dec 2020 09:15:53 -0800 Subject: [PATCH] version: bump to 0.11.2-beta --- release_notes.md | 12 ------------ version.go | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/release_notes.md b/release_notes.md index 0ffb2c2..9a87269 100644 --- a/release_notes.md +++ b/release_notes.md @@ -16,18 +16,6 @@ This file tracks release notes for the loop client. #### New Features -##### Autoloop Swap Size -* Autoloop can now be configured with custom swap size limits. Previously, -autoloop would use the minimum/maximum swap amount set by the server (exposed -by the `loop terms` command) to decide on swap size. -* Setting a custom minimum swap amount is particularly useful for clients that -would like to perform fewer, larger swaps to save on fees. The trade-off when -setting a large minimum amount is that autoloop will wait until your channel is -at least the minimum amount below its incoming threshold amount before executing -a swap, which may result in channels staying under the threshold for longer. -* These values can be set using the following command: `loop setparams --minamt={minimum in sats} --maxamt={maximum in sats}`. -* The values set must fall within the limits set by the loop server. - #### Breaking Changes #### Bug Fixes diff --git a/version.go b/version.go index 10bc6ed..54e158c 100644 --- a/version.go +++ b/version.go @@ -27,7 +27,7 @@ const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 appMinor uint = 11 - appPatch uint = 1 + appPatch uint = 2 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.