From 3a4fefc2bdd7c2c74bbd4ab0231b18e04f9213a9 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Wed, 20 Jul 2022 13:16:52 -0500 Subject: [PATCH] version: bump version to v0.20.0-beta --- release_notes.md | 2 -- version.go | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/release_notes.md b/release_notes.md index 06a0e44..c71d135 100644 --- a/release_notes.md +++ b/release_notes.md @@ -16,8 +16,6 @@ This file tracks release notes for the loop client. #### New Features -* P2TR HTLCs and privacy preserving and cheaper MuSig2 loopout sweeps are now supported as an experimental feature when running `loopd` with the`--experimental` flag. - #### Breaking Changes #### Bug Fixes diff --git a/version.go b/version.go index 79e8773..d7f0a61 100644 --- a/version.go +++ b/version.go @@ -26,8 +26,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 19 - appPatch uint = 1 + appMinor uint = 20 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.