diff --git a/release_notes.md b/release_notes.md index 2958079..9a87269 100644 --- a/release_notes.md +++ b/release_notes.md @@ -13,13 +13,9 @@ 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 -- Fixed compile time compatibility with `lnd v0.12.0-beta`. #### New Features -* The output of the `audit` rpc is now sorted by ascending timestamp. -* A pre-set custom category for [Lightning Pool](https://github.com/lightninglabs/pool) has been added to the `audit` cli, and can be used to separate all pool-related transactions into their own category called `pool` using `audit --pool-category`. #### Breaking Changes #### Bug Fixes -* A bug in the `audit` custom categories functionality which switched on-chain and off-chain categories has been fixed. \ No newline at end of file diff --git a/version.go b/version.go index 06edd0e..c2b1d8e 100644 --- a/version.go +++ b/version.go @@ -25,7 +25,7 @@ const ( // Please update release_notes.md when updating this! appMajor uint = 0 appMinor uint = 2 - appPatch uint = 2 + appPatch uint = 3 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.