Skip to content

Commit

Permalink
Merge pull request #251 from valory-xyz/release/v0.1.0-rc93
Browse files Browse the repository at this point in the history
chore: bump to rc93
  • Loading branch information
truemiller authored Jul 26, 2024
2 parents 2f66cc3 + 6628568 commit d503451
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions electron/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { paths } = require('./constants');
* - use "" (nothing as a suffix) for latest release candidate, for example "0.1.0rc26"
* - use "alpha" for alpha release, for example "0.1.0rc26-alpha"
*/
const OlasMiddlewareVersion = '0.1.0rc92';
const OlasMiddlewareVersion = '0.1.0rc93';

const Env = {
...process.env,
Expand Down Expand Up @@ -129,7 +129,9 @@ async function installTendermintUnix() {

const url = TendermintUrls[os.platform()][process.arch];

logger.electron(`Downloading ${url} to ${paths.tempDir}. This might take a while...`);
logger.electron(
`Downloading ${url} to ${paths.tempDir}. This might take a while...`,
);
await downloadFile(url, `${paths.tempDir}/tendermint.tar.gz`);

logger.electron(`Installing tendermint binary`);
Expand All @@ -140,7 +142,10 @@ async function installTendermintUnix() {
if (!fs.existsSync('/usr/local/bin')) {
await runSudoUnix('mkdir', '/usr/local/bin');
}
await runSudoUnix('install', `${paths.tempDir}/tendermint /usr/local/bin/tendermint`);
await runSudoUnix(
'install',
`${paths.tempDir}/tendermint /usr/local/bin/tendermint`,
);
}
process.chdir(cwd);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@
"start:frontend": "cd frontend && yarn start",
"test:frontend": "cd frontend && yarn test"
},
"version": "0.1.0-rc92"
"version": "0.1.0-rc93"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "olas-operate-middleware"
version = "0.1.0-rc92"
version = "0.1.0-rc93"
description = ""
authors = ["David Vilela <[email protected]>", "Viraj Patel <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit d503451

Please sign in to comment.