Skip to content

Commit

Permalink
feat(images): add support for TAP v0.3.3-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Mar 6, 2024
1 parent f4b16d4 commit b4d1e2d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 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.10.0, v0.9.0, v0.8.0, v0.7.0, v0.6.2, v0.5.0
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v26.0, v25.0, v24.0, v23.0, v22.0, v0.21.1
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.3.2
- [Taproot Assets](https://github.com/lightninglabs/taproot-assets) - v0.3.3, v0.3.2

## Dependencies

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

### Tags

- `0.3.3-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.3.2-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `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))
Expand Down
5 changes: 3 additions & 2 deletions docker/nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@
"versions": []
},
"tapd": {
"latest": "0.3.2-alpha",
"versions": ["0.3.2-alpha"],
"latest": "0.3.3-alpha",
"versions": ["0.3.3-alpha", "0.3.2-alpha"],
"compatibility": {
"0.3.3-alpha": "0.16.0-beta",
"0.3.2-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 @@ -306,9 +306,10 @@ export const defaultRepoState: DockerRepoState = {
versions: [],
},
tapd: {
latest: '0.3.2-alpha',
versions: ['0.3.2-alpha'],
latest: '0.3.3-alpha',
versions: ['0.3.3-alpha', '0.3.2-alpha'],
compatibility: {
'0.3.3-alpha': '0.16.0-beta',
'0.3.2-alpha': '0.16.0-beta',
},
},
Expand Down
4 changes: 3 additions & 1 deletion src/utils/tests/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,17 @@ export const testRepoState: DockerRepoState = {
versions: [],
},
tapd: {
latest: '0.3.2-alpha',
latest: '0.3.3-alpha',
versions: [
'0.3.3-alpha',
'0.3.2-alpha',
'0.3.1-alpha',
'0.2.3-alpha',
'0.2.2-alpha',
'0.2.0-alpha',
],
compatibility: {
'0.3.3-alpha': '0.16.0-beta',
'0.3.2-alpha': '0.16.0-beta',
'0.3.1-alpha': '0.16.0-beta',
'0.3.0-alpha': '0.16.0-beta',
Expand Down

0 comments on commit b4d1e2d

Please sign in to comment.