Skip to content

Commit

Permalink
feat(images): add support for tapd v0.3.1-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Nov 14, 2023
1 parent 57217ac commit cf2b15b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Supported Network Node Versions:
- [Core Lightning](https://github.com/ElementsProject/lightning) - v23.05.2, v23.02.2, v22.11, v0.12.0, v0.11.2, v0.10.2
- [Eclair](https://github.com/ACINQ/eclair/) - v0.9.0, v0.8.0, v0.7.0, v0.6.2, v0.5.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v25.0, v24.0, v23.0, v22.0, v0.21.1
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.3.0
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.3.1, v0.3.0

## Dependencies

Expand Down
1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ Replace `<version>` with the desired Eclair version (ex: `0.3.3`).

### Tags

- `0.3.1-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.3.0-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.2.3-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.2.2-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
Expand Down
5 changes: 3 additions & 2 deletions docker/nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
"versions": []
},
"tapd": {
"latest": "0.3.0-alpha",
"versions": ["0.3.0-alpha"],
"latest": "0.3.1-alpha",
"versions": ["0.3.1-alpha", "0.3.0-alpha"],
"compatibility": {
"0.3.1-alpha": "0.16.0-beta",
"0.3.0-alpha": "0.16.0-beta"
}
}
Expand Down
5 changes: 3 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,10 @@ export const defaultRepoState: DockerRepoState = {
versions: [],
},
tapd: {
latest: '0.3.0-alpha',
versions: ['0.3.0-alpha'],
latest: '0.3.1-alpha',
versions: ['0.3.1-alpha', '0.3.0-alpha'],
compatibility: {
'0.3.1-alpha': '0.16.0-beta',
'0.3.0-alpha': '0.16.0-beta',
},
},
Expand Down

0 comments on commit cf2b15b

Please sign in to comment.