Skip to content

Commit

Permalink
version+docs: add release notes, bump version to v0.14.0-alpha.rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
guggero committed Dec 17, 2024
1 parent 0005d38 commit b674ce2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 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.28.9-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 @@ -51,4 +61,9 @@
# Contributors (Alphabetical Order)

* Elle Mouton
* Oliver Gugger
* George Tsagkarelis
* Gijs van Dam
* Jamal James
* Jonathan Harvey-Buschel
* Olaoluwa Osuntokun
* Oliver Gugger
6 changes: 3 additions & 3 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ 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.
appPreRelease = "alpha"
appPreRelease = "alpha.rc3"
)

// Version returns the application version as a properly formed string per the
Expand Down

0 comments on commit b674ce2

Please sign in to comment.