From a97f13e4fa8925def42d7ce90e713c7c6f66f98d Mon Sep 17 00:00:00 2001 From: Dominion5254 Date: Mon, 16 Sep 2024 15:13:37 -0600 Subject: [PATCH] Update to 0.18.3 (#132) * Update to 0.18.3 * Update README --- Dockerfile | 2 +- README.md | 22 ++++++++++++---------- manifest.yaml | 9 +++------ scripts/services/migrations.ts | 2 +- 4 files changed, 17 insertions(+), 18 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd6c6ab..ccf0f2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lightninglabs/lnd:v0.18.0-beta +FROM lightninglabs/lnd:v0.18.3-beta ARG ARCH RUN apk add --no-cache \ diff --git a/README.md b/README.md index a74cebd..d6093f6 100644 --- a/README.md +++ b/README.md @@ -7,29 +7,25 @@ Before building the LND package, your build environment must be setup for buildi ## Dependencies +- [deno](https://deno.land/) - [docker](https://docs.docker.com/get-docker) - [docker-buildx](https://docs.docker.com/buildx/working-with-buildx/) -- [yq (version 4)](https://mikefarah.gitbook.io/yq) -- [start-sdk](https://github.com/Start9Labs/start-os/tree/sdk/backend) - [make](https://www.gnu.org/software/make/) -- [deno](https://deno.land/) +- [start-sdk](https://github.com/Start9Labs/start-os/blob/v0.3.5.1/core/install-sdk.sh) +- [yq (version 4)](https://mikefarah.gitbook.io/yq) ## Cloning Clone the project locally. ``` -git clone git@github.com:Start9Labs/lnd-wrapper.git -cd lnd-wrapper +git clone git@github.com:Start9Labs/lnd-startos.git +cd lnd-startos ``` ## Building -To build the project, run the following commands: - -``` -make -``` +To build the project run the command: `make` Alternatively the package can be built for individual architectures by specifying the architecture as follows: @@ -51,6 +47,12 @@ start-cli auth login start-cli --host https://server-name.local package install lnd.s9pk ``` +If you already have your `start-cli` config file setup with a default `host`, you can install simply by running: + +``` +make install +``` + **Tip:** You can also install the lnd.s9pk using **Sideload Service** under the **StartOS > SETTINGS** section. ## Verify Install diff --git a/manifest.yaml b/manifest.yaml index 85da4af..bdc4f1b 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,12 +1,9 @@ id: lnd title: LND -version: 0.18.0.1 +version: 0.18.3 release-notes: |- - * Update to 0.18.0 [Release Notes](https://github.com/lightningnetwork/lnd/releases/tag/v0.18.0-beta) - * Add Umbrel 1.0 migration action - * Add config options for zero-conf channels, taproot channels, and sweeper settings - * Minor fixes - + * Update to 0.18.3 [Release Notes](https://github.com/lightningnetwork/lnd/releases/tag/v0.18.3-beta) + * Update README license: MIT wrapper-repo: "https://github.com/Start9Labs/lnd-startos" upstream-repo: "https://github.com/lightningnetwork/lnd" diff --git a/scripts/services/migrations.ts b/scripts/services/migrations.ts index 39abadc..56cb367 100644 --- a/scripts/services/migrations.ts +++ b/scripts/services/migrations.ts @@ -251,5 +251,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations ) } }, - "0.18.0.1", + "0.18.3", );