Skip to content

Commit 5201b49

Browse files
authored
Merge pull request #691 from lightninglabs/update-to-v0.27.0-beta
version: bump version to v0.27.0-beta
2 parents df2db80 + a25f070 commit 5201b49

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

release_notes.md

-9
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,6 @@ This file tracks release notes for the loop client.
1616

1717
#### New Features
1818

19-
* Sweep Batcher: A new sub-system was added that handles all the loopout
20-
sweeps. Successful loopout HTLCs will no longer be swept back to the wallet via
21-
individual transactions but will instead form a single transaction that holds
22-
multiple inputs and pays to a single output. This will significantly reduce
23-
chain fee costs as it's using less block space by directly consolidating all the
24-
htlcs to a single address. Loopouts that pay to non-wallet addresses will still
25-
use individual transactions as their output cannot be mutated.
26-
27-
2819
#### Breaking Changes
2920

3021
#### Bug Fixes

version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package loop
33
// Copyright (c) 2013-2017 The btcsuite developers
44
// Copyright (c) 2015-2016 The Decred developers
55
// Heavily inspired by https://github.com/btcsuite/btcd/blob/master/version.go
6-
// Copyright (C) 2015-2023 The Lightning Network Developers
6+
// Copyright (C) 2015-2024 The Lightning Network Developers
77

88
import (
99
"bytes"
@@ -26,8 +26,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
2626
const (
2727
// Note: please update release_notes.md when you change these values.
2828
appMajor uint = 0
29-
appMinor uint = 26
30-
appPatch uint = 6
29+
appMinor uint = 27
30+
appPatch uint = 0
3131

3232
// appPreRelease MUST only contain characters from semanticAlphabet per
3333
// the semantic versioning spec.

0 commit comments

Comments
 (0)