Skip to content

Commit

Permalink
feat(images): add support for LND v0.14.1-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
qustavo committed Dec 5, 2021
1 parent a4508af commit 162878b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ With Polar you can:

Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.13.1, v0.13.0, v0.12.1, v0.11.1, v0.10.3
- [LND](https://github.com/lightningnetwork/lnd) - v0.14.1, v0.13.1, v0.13.0, v0.12.1, v0.11.1, v0.10.3
- [c-lightning](https://github.com/ElementsProject/lightning) - v0.10.0, v0.9.3, v0.8.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.6.0, v0.5.0, v0.4.2
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v22.0, v0.21.1
Expand Down
1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ $ docker push polarlightning/bitcoind:<version>

### Tags

- `0.14.1-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.13.1-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.13.0-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
- `0.12.1-beta` ([lnd/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/lnd/Dockerfile))
Expand Down
6 changes: 4 additions & 2 deletions docker/nodes.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"version": 33,
"version": 34,
"images": {
"LND": {
"latest": "0.13.1-beta",
"latest": "0.14.1-beta",
"versions": [
"0.14.1-beta",
"0.13.1-beta",
"0.13.0-beta",
"0.12.1-beta",
"0.11.1-beta",
"0.10.3-beta"
],
"compatibility": {
"0.14.1-beta": "22.0",
"0.13.1-beta": "22.0",
"0.13.0-beta": "22.0",
"0.12.1-beta": "22.0",
Expand Down
6 changes: 4 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,12 @@ export const REPO_STATE_URL =
* are pushed to Docker Hub, this list should be updated along with the /docker/nodes.json file.
*/
export const defaultRepoState: DockerRepoState = {
version: 33,
version: 34,
images: {
LND: {
latest: '0.13.1-beta',
latest: '0.14.1-beta',
versions: [
'0.14.1-beta',
'0.13.1-beta',
'0.13.0-beta',
'0.12.1-beta',
Expand All @@ -230,6 +231,7 @@ export const defaultRepoState: DockerRepoState = {
// not all LND versions are compatible with all bitcoind versions.
// this mapping specifies the highest compatible bitcoind for each LND version
compatibility: {
'0.14.1-beta': '22.0',
'0.13.1-beta': '22.0',
'0.13.0-beta': '22.0',
'0.12.1-beta': '22.0',
Expand Down

0 comments on commit 162878b

Please sign in to comment.