2
0
mirror of https://github.com/lightninglabs/loop synced 2024-11-04 06:00:21 +00:00

Merge pull request #562 from lightninglabs/update-to-v0.22.0

version: bump version to v0.22.0-beta
This commit is contained in:
Alex Bosworth 2023-03-29 09:08:44 -07:00 committed by GitHub
commit d44fbcd575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -15,9 +15,6 @@ This file tracks release notes for the loop client.
## Next release
#### New Features
* Autoloop now uses a recurring budget. Users can now specify `autobudget` and
`autobudgetrefreshperiod` to specify the amount of the budget and the period
over which it will refresh.
#### Breaking Changes

View File

@ -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-2020 The Lightning Network Developers
// Copyright (C) 2015-2023 The Lightning Network Developers
import (
"bytes"
@ -26,7 +26,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
// Note: please update release_notes.md when you change these values.
appMajor uint = 0
appMinor uint = 21
appMinor uint = 22
appPatch uint = 0
// appPreRelease MUST only contain characters from semanticAlphabet per