Skip to content

Commit

Permalink
fix: lock binaries version (#752)
Browse files Browse the repository at this point in the history
Description
---
fixes: #731 
Lock binaries version excatly as listed in
`binaries_versions_nextnet.json` and `binaries_versions_esmeralda.json`

Motivation and Context
---
If not specified tari univese V1 could use newer version of binaries.

How Has This Been Tested?
---
Check installed binaries (in my case
`~/.cache/com.tari.universe.alpha/binaries` and chaged to some lower
version in `binaries_versions_esmeralda.json` and check if there are new
installed binaries.

What process can a PR reviewer use to test or verify this change?
---
Same as above.

Breaking Changes
---

- [x] None
- [ ] Requires data directory on base node to be deleted
- [ ] Requires hard fork
- [ ] Other - Please specify

Co-authored-by: stringhandler <[email protected]>
  • Loading branch information
MCozhusheck and stringhandler authored Oct 10, 2024
1 parent 63d54b9 commit 1e53eeb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions src-tauri/binaries_versions_esmeralda.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"binaries": {
"xmrig": "6.22.0",
"mmproxy": "1.6.0-pre.0",
"minotari_node": "1.6.0-pre.0",
"wallet": "1.6.0-pre.0",
"sha-p2pool": "0.1.9",
"xtrgpuminer": "0.1.10",
"tor": "13.5.6"
"xmrig": "=6.22.0",
"mmproxy": "=1.6.0-pre.0",
"minotari_node": "=1.6.0-pre.0",
"wallet": "=1.6.0-pre.0",
"sha-p2pool": "=0.1.9",
"xtrgpuminer": "=0.1.10",
"tor": "=13.5.6"
}
}
}
16 changes: 8 additions & 8 deletions src-tauri/binaries_versions_nextnet.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"binaries": {
"xmrig": "6.22.0",
"mmproxy": "1.5.1-rc.3",
"minotari_node": "1.5.1-rc.3",
"wallet": "1.5.1-rc.3",
"sha-p2pool": "0.1.9",
"xtrgpuminer": "0.1.10",
"tor": "13.5.6"
"xmrig": "=6.22.0",
"mmproxy": "=1.5.1-rc.3",
"minotari_node": "=1.5.1-rc.3",
"wallet": "=1.5.1-rc.3",
"sha-p2pool": "=0.1.9",
"xtrgpuminer": "=0.1.10",
"tor": "=13.5.6"
}
}
}

0 comments on commit 1e53eeb

Please sign in to comment.