Commit 62657a0 1 parent 41b4389 commit 62657a0 Copy full SHA for 62657a0
File tree 4 files changed +33
-3
lines changed
4 files changed +33
-3
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.29.0-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
42
52
43
53
### Loop
44
54
55
+ * Updated Loop [ to the latest version
56
+ ` v0.29.0-beta ` ] ( https://github.com/lightninglabs/loop/releases/tag/v0.29.0-beta ) .
57
+
45
58
### Pool
46
59
47
60
### Faraday
48
61
49
62
### Taproot Assets
50
63
64
+ * Updated ` tapd ` [ to the latest version
65
+ ` v0.5.0-alpha ` ] ( https://github.com/lightninglabs/taproot-assets/releases/tag/v0.5.0 )
66
+
51
67
# Contributors (Alphabetical Order)
52
68
53
69
* Elle Mouton
54
- * Oliver Gugger
70
+ * George Tsagkarelis
71
+ * Gijs van Dam
72
+ * Jamal James
73
+ * Jonathan Harvey-Buschel
74
+ * Olaoluwa Osuntokun
75
+ * Oliver Gugger
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ 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.
You can’t perform that action at this time.
0 commit comments