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