From e8c2563082f7466626efee9e422a4a0c0a28b989 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Tue, 25 Apr 2023 08:41:13 -0700 Subject: [PATCH] version: bump version to v0.23.0-beta --- release_notes.md | 1 - version.go | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/release_notes.md b/release_notes.md index 3cbf37d..c71d135 100644 --- a/release_notes.md +++ b/release_notes.md @@ -13,7 +13,6 @@ This file tracks release notes for the loop client. * Once the version bump PR is merged and tagged, add the release notes to the tag on GitHub. ## Next release -* Set musig2 to be the default swap protocol. #### New Features diff --git a/version.go b/version.go index 01089c4..38685a1 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 = 22 - appPatch uint = 1 + appMinor uint = 23 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.