Skip to content

Commit

Permalink
Merge pull request #691 from lightninglabs/update-to-v0.27.0-beta
Browse files Browse the repository at this point in the history
version: bump version to v0.27.0-beta
  • Loading branch information
alexbosworth committed Jan 30, 2024
2 parents df2db80 + a25f070 commit 5201b49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
9 changes: 0 additions & 9 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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.
Expand Down

0 comments on commit 5201b49

Please sign in to comment.