From 7c4c021c07d337b1d970ff6f449200443fddf086 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Mon, 2 Aug 2021 11:46:45 -0700 Subject: [PATCH] version: bump version to v0.15.0-beta --- release_notes.md | 8 -------- version.go | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) 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.