diff --git a/README.md b/README.md index 37e521cd7..09b060c49 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.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.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 | diff --git a/docs/release-notes/release-notes-0.13.5.md b/docs/release-notes/release-notes-0.13.5.md index 05c3eb004..627b7dcf2 100644 --- a/docs/release-notes/release-notes-0.13.5.md +++ b/docs/release-notes/release-notes-0.13.5.md @@ -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). diff --git a/docs/release-notes/release-notes-0.13.7.md b/docs/release-notes/release-notes-0.14.0.md similarity index 70% rename from docs/release-notes/release-notes-0.13.7.md rename to docs/release-notes/release-notes-0.14.0.md index 0e30c51f4..9ca71291f 100644 --- a/docs/release-notes/release-notes-0.13.7.md +++ b/docs/release-notes/release-notes-0.14.0.md @@ -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 @@ -51,4 +61,9 @@ # Contributors (Alphabetical Order) * Elle Mouton -* Oliver Gugger \ No newline at end of file +* George Tsagkarelis +* Gijs van Dam +* Jamal James +* Jonathan Harvey-Buschel +* Olaoluwa Osuntokun +* Oliver Gugger diff --git a/version.go b/version.go index d3ed75142..10f07fcd1 100644 --- a/version.go +++ b/version.go @@ -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