version: bump version to v0.27.0-beta

update-to-v0.27.0-beta
Alex Bosworth 3 months ago
parent df2db8055b
commit a25f070c4d
No known key found for this signature in database
GPG Key ID: E80D2F3F311FD87E

@ -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

@ -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.

Loading…
Cancel
Save