From 1b214ca1752cd36a49c93b51afa4e28fdcdc2b84 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Wed, 23 Apr 2025 07:42:34 -0700 Subject: [PATCH] version: bump version to v0.31.0-beta --- release_notes.md | 6 ------ version.go | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/release_notes.md b/release_notes.md index f8da6fd4e..38afc603e 100644 --- a/release_notes.md +++ b/release_notes.md @@ -15,12 +15,6 @@ This file tracks release notes for the loop client. ## Next release #### New Features -* [Enhance](https://github.com/lightninglabs/loop/pull/912) the - `loop listswaps` command by improving the ability to filter the - response. Use `--start_timestamp_ns` to return only swaps after - that timestamp. Use `--max_swaps` to limit total swap outputs. - Paging is enabled using the `next_start_time` field in the response. - #### Breaking Changes diff --git a/version.go b/version.go index 4762a708f..c7e119557 100644 --- a/version.go +++ b/version.go @@ -26,7 +26,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 30 + appMinor uint = 31 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per