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