File tree 4 files changed +28
-4
lines changed
4 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ in remote mode (meaning that `lnd-mode=remote` is set). It shows the
78
78
79
79
| LiT | LND |
80
80
| -------------------| --------------|
81
+ | ** v0.14.0-alpha** | v0.18.4-beta |
81
82
| ** v0.13.6-alpha** | v0.17.1-beta |
82
83
| ** v0.13.5-alpha** | v0.17.1-beta |
83
84
| ** v0.13.4-alpha** | v0.17.1-beta |
@@ -158,10 +159,16 @@ The following table shows the supported combinations:
158
159
| ` taproot-assets-mode=disable ` | X | X |
159
160
| ` lnd ` running in "stateless init" mode | X | |
160
161
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
+
161
167
## Daemon Versions packaged with LiT
162
168
163
169
| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
164
170
| -------------------| --------------| --------------| ---------------| --------------| ----------------|
171
+ | ** v0.14.0-alpha** | v0.18.4-beta | v0.28.9-beta | v0.2.13-alpha | v0.6.5-beta | v0.5.0-alpha |
165
172
| ** v0.13.6-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
166
173
| ** v0.13.5-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
167
174
| ** v0.13.4-alpha** | v0.18.3-beta | v0.28.7-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
Original file line number Diff line number Diff line change 29
29
especially useful in stateless-init mode where users will not have access to
30
30
a LiT macaroon to perform this call with.
31
31
32
+ * [ Convert litrpc package into a module] ( https://github.com/lightninglabs/lightning-terminal/pull/823 ) .
33
+
32
34
### Technical and Architectural Updates
33
35
34
36
* [ Convert litrpc package into a module] ( https://github.com/lightninglabs/lightning-terminal/pull/823 ) .
Original file line number Diff line number Diff line change 34
34
network] ( https://github.com/lightninglabs/lightning-terminal/pull/902 ) . This
35
35
can be done using the ` --network=signet ` config option.
36
36
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
+
37
47
### Technical and Architectural Updates
38
48
39
49
## Integrated Binary Updates
51
61
# Contributors (Alphabetical Order)
52
62
53
63
* Elle Mouton
54
- * Oliver Gugger
64
+ * George Tsagkarelis
65
+ * Gijs van Dam
66
+ * Jamal James
67
+ * Jonathan Harvey-Buschel
68
+ * Olaoluwa Osuntokun
69
+ * Oliver Gugger
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
22
22
// versioning 2.0.0 spec (http://semver.org/).
23
23
const (
24
24
appMajor uint = 0
25
- appMinor uint = 13
26
- appPatch uint = 6
25
+ appMinor uint = 14
26
+ appPatch uint = 0
27
27
28
28
// appPreRelease MUST only contain characters from semanticAlphabet per
29
29
// the semantic versioning spec.
30
- appPreRelease = "alpha"
30
+ appPreRelease = "alpha.rc3 "
31
31
)
32
32
33
33
// Version returns the application version as a properly formed string per the
You can’t perform that action at this time.
0 commit comments