From 3cf9d616d6ab7b819fb053689f9e985e1cc782f8 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Wed, 24 May 2023 11:47:15 -0700 Subject: [PATCH] version: bump version to v0.24.0-beta --- release_notes.md | 3 --- version.go | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/release_notes.md b/release_notes.md index bfcde11..c71d135 100644 --- a/release_notes.md +++ b/release_notes.md @@ -15,9 +15,6 @@ This file tracks release notes for the loop client. ## Next release #### New Features -- Easy Autoloop: a new mode for autoloop which requires the user to only set a - single target balance. Autoloop will start dispatching loop outs - whenever the total channel balance of the node exceeds that target. #### Breaking Changes diff --git a/version.go b/version.go index 38685a1..d3b82c6 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 = 23 + appMinor uint = 24 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per