mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
Merge pull request #691 from lightninglabs/update-to-v0.27.0-beta
version: bump version to v0.27.0-beta
This commit is contained in:
commit
5201b496cb
2 changed files with 3 additions and 12 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue