Skip to content

Commit

Permalink
Bump to 0.18.0~1 and set migration to configured=true (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominion5254 authored Jun 19, 2024
1 parent 8d79eb9 commit 6cbc2da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
id: lnd
title: LND
version: 0.18.0
version: 0.18.0.1
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
* Notice! If LND gets stuck in "Stopping" status after the update, the solution is to restart your server. System -> Restart.
license: MIT
wrapper-repo: "https://github.com/Start9Labs/lnd-startos"
Expand Down
10 changes: 5 additions & 5 deletions scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const migration: T.ExpectedExports.migration = compat.migrations
throw new Error("Cannot downgrade");
},
},
"0.18.0": {
"0.18.0.1": {
up: compat.migrations.updateConfig(
(config: any) => {
config.advanced["protocol-zero-conf"] = false;
Expand All @@ -226,8 +226,8 @@ export const migration: T.ExpectedExports.migration = compat.migrations
}
return config;
},
false,
{ version: "0.18.0", type: "up" }
true,
{ version: "0.18.0.1", type: "up" }
),
down: compat.migrations.updateConfig(
(config) => {
Expand All @@ -247,9 +247,9 @@ export const migration: T.ExpectedExports.migration = compat.migrations
return config;
},
true,
{ version: "0.18.0", type: "down" }
{ version: "0.18.0.1", type: "down" }
)
}
},
"0.18.0",
"0.18.0.1",
);

0 comments on commit 6cbc2da

Please sign in to comment.