File tree Expand file tree Collapse file tree 4 files changed +28
-4
lines changed Expand file tree Collapse file tree 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
7878
7979|  LiT               |  LND          | 
8080| -------------------| --------------| 
81+ |  ** v0.14.0-alpha**  |  v0.18.4-beta | 
8182|  ** v0.13.6-alpha**  |  v0.17.1-beta | 
8283|  ** v0.13.5-alpha**  |  v0.17.1-beta | 
8384|  ** v0.13.4-alpha**  |  v0.17.1-beta | 
@@ -158,10 +159,16 @@ The following table shows the supported combinations:
158159|  ` taproot-assets-mode=disable `            |  X                     |  X                 | 
159160|  ` lnd `  running in "stateless init" mode |  X                     |                    | 
160161
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+ 
161167## Daemon Versions packaged with LiT  
162168
163169|  LiT               |  LND          |  Loop         |  Faraday       |  Pool         |  Taproot Assets | 
164170| -------------------| --------------| --------------| ---------------| --------------| ----------------| 
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   | 
165172|  ** v0.13.6-alpha**  |  v0.18.3-beta |  v0.28.8-beta |  v0.2.13-alpha |  v0.6.5-beta  |  v0.4.1-alpha   | 
166173|  ** v0.13.5-alpha**  |  v0.18.3-beta |  v0.28.8-beta |  v0.2.13-alpha |  v0.6.5-beta  |  v0.4.1-alpha   | 
167174|  ** 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 2929  especially useful in stateless-init mode where users will not have access to 
3030  a LiT macaroon to perform this call with. 
3131
32+ *  [ Convert litrpc package into a module] ( https://github.com/lightninglabs/lightning-terminal/pull/823 ) .
33+ 
3234### Technical and Architectural Updates  
3335
3436*  [ Convert litrpc package into a module] ( https://github.com/lightninglabs/lightning-terminal/pull/823 ) .
Original file line number Diff line number Diff line change 3434  network] ( https://github.com/lightninglabs/lightning-terminal/pull/902 ) . This 
3535  can be done using the ` --network=signet `  config option.
3636
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+ 
3747### Technical and Architectural Updates  
3848
3949## Integrated Binary Updates  
5161# Contributors (Alphabetical Order)  
5262
5363*  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
2222// versioning 2.0.0 spec (http://semver.org/). 
2323const  (
2424	appMajor  uint  =  0 
25- 	appMinor  uint  =  13 
26- 	appPatch  uint  =  6 
25+ 	appMinor  uint  =  14 
26+ 	appPatch  uint  =  0 
2727
2828	// appPreRelease MUST only contain characters from semanticAlphabet per 
2929	// the semantic versioning spec. 
30- 	appPreRelease  =  "alpha" 
30+ 	appPreRelease  =  "alpha.rc3 " 
3131)
3232
3333// Version returns the application version as a properly formed string per the 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments