Skip to content

Commit

Permalink
Update/v0.15.1 (#48)
Browse files Browse the repository at this point in the history
* Bump LND Dependency to <0.19.0

* Update RTL submodule to 0.15.1

* Update README

* replace serde rename with alias
  • Loading branch information
Dominion5254 authored Jun 18, 2024
1 parent 0c69863 commit 4faab14
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This project wraps [ride-the-lightning](https://github.com/Ride-The-Lightning/RT
- [yq](https://mikefarah.gitbook.io/yq)
- [deno](https://deno.land/)
- [make](https://www.gnu.org/software/make/)
- [start-sdk](https://github.com/Start9Labs/start-os/tree/sdk/backend)
- [start-sdk](https://github.com/Start9Labs/start-os/blob/v0.3.5.1/core/install-sdk.sh)

## Build environment

Expand All @@ -25,7 +25,7 @@ git clone [email protected]:Start9Labs/ride-the-lightning-wrapper.git
cd ride-the-lightning-wrapper
git submodule update --init
cd RTL
npm install --omit=dev
npm install --omit=dev --legacy-peer-deps
```

## Building
Expand Down Expand Up @@ -58,10 +58,11 @@ start-cli auth login
#Enter your StartOS password
start-cli --host https://server-name.local package install ride-the-lightning.s9pk
```
**Tip:** You can also install the ride-the-lightning.s9pk using **Sideload Service** under the **StartOS > SETTINGS** section.

## Verify Install
If you already have your `start-cli` config file setup with a default `host`, you can install simply by running:

Go to your StartOS Services page, select **ride-the-lightning**, configure and start the service.
```
make install
```

**Done!**
> **Tip:** You can also install the `ride-the-lightning.s9pk` using **Sideload Service** under the **System > Manage** section.
2 changes: 1 addition & 1 deletion RTL
Submodule RTL updated 389 files
4 changes: 2 additions & 2 deletions configurator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ struct RTLNode {
index: usize,
ln_implementation: RTLNodeType,
ln_node: String,
#[serde(rename = "Authentication")]
#[serde(alias = "Authentication")]
authentication: RTLNodeAuthentication,
#[serde(rename = "Settings")]
#[serde(alias = "Settings")]
settings: RTLNodeSettings,
}

Expand Down
7 changes: 4 additions & 3 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
id: ride-the-lightning
title: Ride the Lightning
version: 0.15.0.1
version: 0.15.1
release-notes: |
* Bump max Core Lightning dependency version
* Update RTL to 0.15.1 [Release Notes](https://github.com/Ride-The-Lightning/RTL/releases/tag/v0.15.1)
* Bump max LND dependency version
license: MIT
wrapper-repo: https://github.com/Start9Labs/ride-the-lightning-wrapper
upstream-repo: https://github.com/Ride-The-Lightning/RTL
Expand Down Expand Up @@ -76,7 +77,7 @@ interfaces:
- http
dependencies:
lnd:
version: ">=0.13.4 <0.18.0"
version: ">=0.13.4 <0.19.0"
description: Used to communicate with the Lightning Network.
requirement:
type: opt-in
Expand Down
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations
),
},
},
"0.15.0.1",
"0.15.1",
);

0 comments on commit 4faab14

Please sign in to comment.