diff --git a/release_notes.md b/release_notes.md index fc772d0..c71d135 100644 --- a/release_notes.md +++ b/release_notes.md @@ -15,17 +15,9 @@ This file tracks release notes for the loop client. ## Next release #### New Features -* Loop-in quote now asks the server to optionally probe the client to test - inbound liquidity. The server may use this information to give more accurate - quotes. #### Breaking Changes #### Bug Fixes -* Grpc error codes returned by the swap server when swap initiation fails are - now surfaced to the client. Previously these error codes would be returned - as a string. #### Maintenance -* Updated compile time dependencies of `lnd`, `grpc-gateway`, `protobuf` and - `grpc`. diff --git a/version.go b/version.go index df360bf..5d0391e 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 = 14 - appPatch uint = 2 + appMinor uint = 15 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.