Skip to content

Commit

Permalink
version+docs: add release notes, bump version to v0.14.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
guggero committed Dec 19, 2024
1 parent 41b4389 commit f16893d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down Expand Up @@ -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 |
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes/release-notes-0.13.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f16893d

Please sign in to comment.