mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
version+docs: add release notes, bump version to v0.14.0-alpha
This commit is contained in:
parent
41b438945b
commit
f16893da76
4 changed files with 33 additions and 3 deletions
|
|
@ -78,6 +78,7 @@ in remote mode (meaning that `lnd-mode=remote` is set). It shows the
|
|||
|
||||
| LiT | LND |
|
||||
|-------------------|--------------|
|
||||
| **v0.14.0-alpha** | v0.18.4-beta |
|
||||
| **v0.13.6-alpha** | v0.17.1-beta |
|
||||
| **v0.13.5-alpha** | v0.17.1-beta |
|
||||
| **v0.13.4-alpha** | v0.17.1-beta |
|
||||
|
|
@ -158,10 +159,16 @@ The following table shows the supported combinations:
|
|||
| `taproot-assets-mode=disable` | X | X |
|
||||
| `lnd` running in "stateless init" mode | X | |
|
||||
|
||||
NOTE: Taproot Assets **Channel** functionality is only available when both `lnd`
|
||||
and `tapd` are running in the same process (by setting both
|
||||
`lnd-mode=integrated` and `taproot-assets-mode=integrated`). Remote mode support
|
||||
will be added in the future.
|
||||
|
||||
## Daemon Versions packaged with LiT
|
||||
|
||||
| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
|
||||
|-------------------|--------------|--------------|---------------|--------------|----------------|
|
||||
| **v0.14.0-alpha** | v0.18.4-beta | v0.29.0-beta | v0.2.13-alpha | v0.6.5-beta | v0.5.0-alpha |
|
||||
| **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 |
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@
|
|||
especially useful in stateless-init mode where users will not have access to
|
||||
a LiT macaroon to perform this call with.
|
||||
|
||||
* [Convert litrpc package into a module](https://github.com/lightninglabs/lightning-terminal/pull/823).
|
||||
|
||||
### Technical and Architectural Updates
|
||||
|
||||
* [Convert litrpc package into a module](https://github.com/lightninglabs/lightning-terminal/pull/823).
|
||||
|
|
|
|||
|
|
@ -34,6 +34,16 @@
|
|||
network](https://github.com/lightninglabs/lightning-terminal/pull/902). This
|
||||
can be done using the `--network=signet` config option.
|
||||
|
||||
* Add [custom channel
|
||||
functionality](https://github.com/lightninglabs/lightning-terminal/pull/848)
|
||||
to `litd`. Custom channels with Taproot Assets can now be created when `litd`
|
||||
runs in integrated `lnd` mode (`lnd-mode=integrated`) with the Taproot Assets
|
||||
daemon also running in integrated mode (`taproot-assets-mode=integrated`).
|
||||
|
||||
* [Add itest](https://github.com/lightninglabs/lightning-terminal/pull/892) for
|
||||
the MinRelayFee check added in Taproot Assets. The test ensures that
|
||||
transactions with fees below the minimum relay fee are rejected.
|
||||
|
||||
### Technical and Architectural Updates
|
||||
|
||||
## Integrated Binary Updates
|
||||
|
|
@ -42,13 +52,24 @@
|
|||
|
||||
### Loop
|
||||
|
||||
* Updated Loop [to the latest version
|
||||
`v0.29.0-beta`](https://github.com/lightninglabs/loop/releases/tag/v0.29.0-beta).
|
||||
|
||||
### Pool
|
||||
|
||||
### Faraday
|
||||
|
||||
### Taproot Assets
|
||||
|
||||
* Updated `tapd` [to the latest version
|
||||
`v0.5.0-alpha`](https://github.com/lightninglabs/taproot-assets/releases/tag/v0.5.0).
|
||||
|
||||
# Contributors (Alphabetical Order)
|
||||
|
||||
* Elle Mouton
|
||||
* Oliver Gugger
|
||||
* George Tsagkarelis
|
||||
* Gijs van Dam
|
||||
* Jamal James
|
||||
* Jonathan Harvey-Buschel
|
||||
* Olaoluwa Osuntokun
|
||||
* Oliver Gugger
|
||||
|
|
@ -22,8 +22,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
|
|||
// versioning 2.0.0 spec (http://semver.org/).
|
||||
const (
|
||||
appMajor uint = 0
|
||||
appMinor uint = 13
|
||||
appPatch uint = 6
|
||||
appMinor uint = 14
|
||||
appPatch uint = 0
|
||||
|
||||
// appPreRelease MUST only contain characters from semanticAlphabet per
|
||||
// the semantic versioning spec.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue