Skip to content

Commit

Permalink
fix(tapd): rename v0.5.0-alpha.rc1 to v0.5.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Nov 30, 2024
1 parent af1c731 commit 4de119a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 19 deletions.
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Replace `<version>` with the desired Eclair version (ex: `0.3.3`).

### Tags

- `0.5.0-alpha.rc1` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.5.0-rc1` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.4.1-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.4.0-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.3.3-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
Expand Down
12 changes: 3 additions & 9 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,18 +377,12 @@ export const defaultRepoState: DockerRepoState = {
versions: [],
},
tapd: {
latest: '0.5.0-alpha.rc1',
versions: [
'0.5.0-alpha.rc1',
'0.4.1-alpha',
'0.4.0-alpha',
'0.3.3-alpha',
'0.3.2-alpha',
],
latest: '0.5.0-rc1',
versions: ['0.5.0-rc1', '0.4.1-alpha', '0.4.0-alpha', '0.3.3-alpha', '0.3.2-alpha'],
// Not all tapd versions are compatible with all LND versions.
// This mapping specifies the minimum compatible LND for each tapd version
compatibility: {
'0.5.0-alpha.rc1': '0.18.4-beta.rc1',
'0.5.0-rc1': '0.18.4-beta.rc1',
'0.4.1-alpha': '0.18.0-beta',
'0.4.0-alpha': '0.18.0-beta',
'0.3.3-alpha': '0.16.0-beta',
Expand Down
12 changes: 3 additions & 9 deletions src/utils/tests/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,18 +175,12 @@ export const testRepoState: DockerRepoState = {
versions: [],
},
tapd: {
latest: '0.5.0-alpha.rc1',
versions: [
'0.5.0-alpha.rc1',
'0.4.1-alpha',
'0.4.0-alpha',
'0.3.3-alpha',
'0.3.2-alpha',
],
latest: '0.5.0-rc1',
versions: ['0.5.0-rc1', '0.4.1-alpha', '0.4.0-alpha', '0.3.3-alpha', '0.3.2-alpha'],
// Not all tapd versions are compatible with all LND versions.
// This mapping specifies the minimum compatible LND for each tapd version
compatibility: {
'0.5.0-alpha.rc1': '0.18.4-beta.rc1',
'0.5.0-rc1': '0.18.4-beta.rc1',
'0.4.1-alpha': '0.18.0-beta',
'0.4.0-alpha': '0.18.0-beta',
'0.3.3-alpha': '0.16.0-beta',
Expand Down

0 comments on commit 4de119a

Please sign in to comment.