Skip to content

Commit d503451

Browse files
authored
Merge pull request #251 from valory-xyz/release/v0.1.0-rc93
chore: bump to rc93
2 parents 2f66cc3 + 6628568 commit d503451

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

electron/install.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { paths } = require('./constants');
1414
* - use "" (nothing as a suffix) for latest release candidate, for example "0.1.0rc26"
1515
* - use "alpha" for alpha release, for example "0.1.0rc26-alpha"
1616
*/
17-
const OlasMiddlewareVersion = '0.1.0rc92';
17+
const OlasMiddlewareVersion = '0.1.0rc93';
1818

1919
const Env = {
2020
...process.env,
@@ -129,7 +129,9 @@ async function installTendermintUnix() {
129129

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

132-
logger.electron(`Downloading ${url} to ${paths.tempDir}. This might take a while...`);
132+
logger.electron(
133+
`Downloading ${url} to ${paths.tempDir}. This might take a while...`,
134+
);
133135
await downloadFile(url, `${paths.tempDir}/tendermint.tar.gz`);
134136

135137
logger.electron(`Installing tendermint binary`);
@@ -140,7 +142,10 @@ async function installTendermintUnix() {
140142
if (!fs.existsSync('/usr/local/bin')) {
141143
await runSudoUnix('mkdir', '/usr/local/bin');
142144
}
143-
await runSudoUnix('install', `${paths.tempDir}/tendermint /usr/local/bin/tendermint`);
145+
await runSudoUnix(
146+
'install',
147+
`${paths.tempDir}/tendermint /usr/local/bin/tendermint`,
148+
);
144149
}
145150
process.chdir(cwd);
146151
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"start:frontend": "cd frontend && yarn start",
5757
"test:frontend": "cd frontend && yarn test"
5858
},
59-
"version": "0.1.0-rc92"
59+
"version": "0.1.0-rc93"
6060
}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "olas-operate-middleware"
3-
version = "0.1.0-rc92"
3+
version = "0.1.0-rc93"
44
description = ""
55
authors = ["David Vilela <[email protected]>", "Viraj Patel <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)