diff --git a/release_notes.md b/release_notes.md index 7178953..38afc60 100644 --- a/release_notes.md +++ b/release_notes.md @@ -16,15 +16,6 @@ This file tracks release notes for the loop client. #### New Features -* Sweep Batcher: A new sub-system was added that handles all the loopout -sweeps. Successful loopout HTLCs will no longer be swept back to the wallet via -individual transactions but will instead form a single transaction that holds -multiple inputs and pays to a single output. This will significantly reduce -chain fee costs as it's using less block space by directly consolidating all the -htlcs to a single address. Loopouts that pay to non-wallet addresses will still -use individual transactions as their output cannot be mutated. - - #### Breaking Changes #### Bug Fixes diff --git a/version.go b/version.go index 90a420c..8f7b3b8 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package loop // Copyright (c) 2013-2017 The btcsuite developers // Copyright (c) 2015-2016 The Decred developers // Heavily inspired by https://github.com/btcsuite/btcd/blob/master/version.go -// Copyright (C) 2015-2023 The Lightning Network Developers +// Copyright (C) 2015-2024 The Lightning Network Developers import ( "bytes" @@ -26,8 +26,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 26 - appPatch uint = 6 + appMinor uint = 27 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.