Skip to content

Commit 62657a0

Browse files
committed
version+docs: add release notes, bump version to v0.14.0-alpha
1 parent 41b4389 commit 62657a0

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ in remote mode (meaning that `lnd-mode=remote` is set). It shows the
7878

7979
| LiT | LND |
8080
|-------------------|--------------|
81+
| **v0.14.0-alpha** | v0.18.4-beta |
8182
| **v0.13.6-alpha** | v0.17.1-beta |
8283
| **v0.13.5-alpha** | v0.17.1-beta |
8384
| **v0.13.4-alpha** | v0.17.1-beta |
@@ -158,10 +159,16 @@ The following table shows the supported combinations:
158159
| `taproot-assets-mode=disable` | X | X |
159160
| `lnd` running in "stateless init" mode | X | |
160161

162+
NOTE: Taproot Assets **Channel** functionality is only available when both `lnd`
163+
and `tapd` are running in the same process (by setting both
164+
`lnd-mode=integrated` and `taproot-assets-mode=integrated`). Remote mode support
165+
will be added in the future.
166+
161167
## Daemon Versions packaged with LiT
162168

163169
| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
164170
|-------------------|--------------|--------------|---------------|--------------|----------------|
171+
| **v0.14.0-alpha** | v0.18.4-beta | v0.29.0-beta | v0.2.13-alpha | v0.6.5-beta | v0.5.0-alpha |
165172
| **v0.13.6-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
166173
| **v0.13.5-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
167174
| **v0.13.4-alpha** | v0.18.3-beta | v0.28.7-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |

docs/release-notes/release-notes-0.13.5.md

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
especially useful in stateless-init mode where users will not have access to
3030
a LiT macaroon to perform this call with.
3131

32+
* [Convert litrpc package into a module](https://github.com/lightninglabs/lightning-terminal/pull/823).
33+
3234
### Technical and Architectural Updates
3335

3436
* [Convert litrpc package into a module](https://github.com/lightninglabs/lightning-terminal/pull/823).

docs/release-notes/release-notes-0.13.7.md docs/release-notes/release-notes-0.14.0.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@
3434
network](https://github.com/lightninglabs/lightning-terminal/pull/902). This
3535
can be done using the `--network=signet` config option.
3636

37+
* Add [custom channel
38+
functionality](https://github.com/lightninglabs/lightning-terminal/pull/848)
39+
to `litd`. Custom channels with Taproot Assets can now be created when `litd`
40+
runs in integrated `lnd` mode (`lnd-mode=integrated`) with the Taproot Assets
41+
daemon also running in integrated mode (`taproot-assets-mode=integrated`).
42+
43+
* [Add itest](https://github.com/lightninglabs/lightning-terminal/pull/892) for
44+
the MinRelayFee check added in Taproot Assets. The test ensures that
45+
transactions with fees below the minimum relay fee are rejected.
46+
3747
### Technical and Architectural Updates
3848

3949
## Integrated Binary Updates
@@ -42,13 +52,24 @@
4252

4353
### Loop
4454

55+
* Updated Loop [to the latest version
56+
`v0.29.0-beta`](https://github.com/lightninglabs/loop/releases/tag/v0.29.0-beta).
57+
4558
### Pool
4659

4760
### Faraday
4861

4962
### Taproot Assets
5063

64+
* Updated `tapd` [to the latest version
65+
`v0.5.0-alpha`](https://github.com/lightninglabs/taproot-assets/releases/tag/v0.5.0)
66+
5167
# Contributors (Alphabetical Order)
5268

5369
* Elle Mouton
54-
* Oliver Gugger
70+
* George Tsagkarelis
71+
* Gijs van Dam
72+
* Jamal James
73+
* Jonathan Harvey-Buschel
74+
* Olaoluwa Osuntokun
75+
* Oliver Gugger

version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
2222
// versioning 2.0.0 spec (http://semver.org/).
2323
const (
2424
appMajor uint = 0
25-
appMinor uint = 13
26-
appPatch uint = 6
25+
appMinor uint = 14
26+
appPatch uint = 0
2727

2828
// appPreRelease MUST only contain characters from semanticAlphabet per
2929
// the semantic versioning spec.

0 commit comments

Comments
 (0)