From e8b7cff35a61c2194d07a3026a1d4dd1122b32dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Tigerstr=C3=B6m?= Date: Mon, 28 Oct 2024 11:18:00 +0100 Subject: [PATCH 1/2] docs/release-notes: cut release v0.13.6-alpha --- docs/release-notes/release-notes-0.13.6.md | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 docs/release-notes/release-notes-0.13.6.md diff --git a/docs/release-notes/release-notes-0.13.6.md b/docs/release-notes/release-notes-0.13.6.md new file mode 100644 index 000000000..80283ec8c --- /dev/null +++ b/docs/release-notes/release-notes-0.13.6.md @@ -0,0 +1,39 @@ +# Release Notes + +- [Lightning Terminal](#lightning-terminal) + - [Bug Fixes](#bug-fixes) + - [Functional Changes/Additions](#functional-changesadditions) + - [Technical and Architectural Updates](#technical-and-architectural-updates) +- [Integrated Binary Updates](#integrated-binary-updates) + - [LND](#lnd) + - [Loop](#loop) + - [Pool](#pool) + - [Faraday](#faraday) + - [Taproot Assets](#taproot-assets) +- [Contributors](#contributors-alphabetical-order) + +## Lightning Terminal + +### Bug Fixes + +* [Bump application version](https://github.com/lightninglabs/lightning-terminal/pull/889) + to `v0.13.6-alpha` with a hotfix release, as the previous `litd` release + didn't update the application version. + +### Functional Changes/Additions + +### Technical and Architectural Updates + +## Integrated Binary Updates + +### LND + +### Loop + +### Pool + +### Faraday + +### Taproot Assets + +# Contributors (Alphabetical Order) From 6e6588711f1902b9ee389bd998e2061596e446c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Tigerstr=C3=B6m?= Date: Mon, 28 Oct 2024 11:01:00 +0100 Subject: [PATCH 2/2] build: bump version to `v0.13.6-alpha` --- README.md | 2 ++ version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 440cfb8ad..37e521cd7 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,7 @@ in remote mode (meaning that `lnd-mode=remote` is set). It shows the | LiT | LND | |-------------------|--------------| +| **v0.13.6-alpha** | v0.17.1-beta | | **v0.13.5-alpha** | v0.17.1-beta | | **v0.13.4-alpha** | v0.17.1-beta | | **v0.13.3-alpha** | v0.17.1-beta | @@ -161,6 +162,7 @@ The following table shows the supported combinations: | LiT | LND | Loop | Faraday | Pool | Taproot Assets | |-------------------|--------------|--------------|---------------|--------------|----------------| +| **v0.13.6-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha | | **v0.13.5-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha | | **v0.13.4-alpha** | v0.18.3-beta | v0.28.7-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha | | **v0.13.3-alpha** | v0.18.2-beta | v0.28.6-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha | diff --git a/version.go b/version.go index 607c21c38..d3ed75142 100644 --- a/version.go +++ b/version.go @@ -23,7 +23,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 13 - appPatch uint = 4 + appPatch uint = 6 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.