Skip to content

Commit fff5bba

Browse files
committed
0.9.21
1 parent 1edacf5 commit fff5bba

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Head over to the releases page and grab the latest installers or binary. https:/
1414
If you are on Debian/Ubuntu, please download the '.AppImage' package and just run it.
1515

1616
```
17-
./Zecwallet.Fullnode-0.9.20.AppImage
17+
./Zecwallet.Fullnode-0.9.21.AppImage
1818
```
1919

2020
If you prefer to install a `.deb` package, that is also available.
2121

2222
```
23-
sudo apt install -f ./zecwallet_0.9.20_amd64.deb
23+
sudo apt install -f ./zecwallet_0.9.21_amd64.deb
2424
```
2525

2626
### Windows

app/companion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export default class CompanionAppListener {
389389
maxzspendable,
390390
tokenName,
391391
zecprice,
392-
serverversion: '0.9.20'
392+
serverversion: '0.9.21'
393393
};
394394

395395
return JSON.stringify(resp);

app/components/Sidebar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class Sidebar extends PureComponent<Props, State> {
225225
openErrorModal(
226226
'Zecwallet Fullnode',
227227
<div className={cstyles.verticalflex}>
228-
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v0.9.20</div>
228+
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v0.9.21</div>
229229
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.</div>
230230
<div className={cstyles.margintoplarge}>
231231
The MIT License (MIT) Copyright (c) 2018-present Zecwallet

app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zecwallet",
33
"productName": "Zecwallet Fullnode",
4-
"version": "0.9.20",
4+
"version": "0.9.21",
55
"description": "Zecwallet Fullnode",
66
"main": "./main.prod.js",
77
"author": {

bin/printversion.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
echo "::set-env name=VERSION::0.9.20"
1+
echo "::set-env name=VERSION::0.9.21"

bin/printversion.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
VERSION="0.9.20"
2+
VERSION="0.9.21"
33
echo "::set-env name=VERSION::$VERSION"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zecwallet",
33
"productName": "Zecwallet Fullnode",
4-
"version": "0.9.20",
4+
"version": "0.9.21",
55
"description": "Zecwallet Fullnode (Electron version)",
66
"scripts": {
77
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",

0 commit comments

Comments
 (0)