diff --git a/README.md b/README.md index 4fcb112f..a8330947 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ Head over to the releases page and grab the latest installers or binary. https:/ If you are on Debian/Ubuntu, please download the '.AppImage' package and just run it. ``` -./Zecwallet.Fullnode-0.9.21.AppImage +./Zecwallet.Fullnode-0.9.22.AppImage ``` If you prefer to install a `.deb` package, that is also available. ``` -sudo apt install -f ./zecwallet_0.9.21_amd64.deb +sudo apt install -f ./zecwallet_0.9.22_amd64.deb ``` ### Windows diff --git a/app/companion.js b/app/companion.js index 593b5ecb..2c3ee61e 100644 --- a/app/companion.js +++ b/app/companion.js @@ -389,7 +389,7 @@ export default class CompanionAppListener { maxzspendable, tokenName, zecprice, - serverversion: '0.9.21' + serverversion: '0.9.22' }; return JSON.stringify(resp); diff --git a/app/components/Sidebar.js b/app/components/Sidebar.js index 19c6ba2f..c8cc9f7f 100644 --- a/app/components/Sidebar.js +++ b/app/components/Sidebar.js @@ -225,7 +225,7 @@ class Sidebar extends PureComponent { openErrorModal( 'Zecwallet Fullnode',
-
Zecwallet Fullnode v0.9.21
+
Zecwallet Fullnode v0.9.22
Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.
The MIT License (MIT) Copyright (c) 2018-present Zecwallet diff --git a/app/package.json b/app/package.json index b6ba538f..9ffa262b 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.21", + "version": "0.9.22", "description": "Zecwallet Fullnode", "main": "./main.prod.js", "author": { diff --git a/bin/printversion.ps1 b/bin/printversion.ps1 index 1ec8a142..1a92802b 100644 --- a/bin/printversion.ps1 +++ b/bin/printversion.ps1 @@ -1 +1 @@ -echo "VERSION=0.9.21" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append +echo "VERSION=0.9.22" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append diff --git a/bin/printversion.sh b/bin/printversion.sh index 6c9e06eb..7b05db65 100755 --- a/bin/printversion.sh +++ b/bin/printversion.sh @@ -1,3 +1,3 @@ #!/bin/bash -VERSION="0.9.21" +VERSION="0.9.22" echo "VERSION=$VERSION" >> $GITHUB_ENV diff --git a/package.json b/package.json index fda254fb..04cd21ce 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.21", + "version": "0.9.22", "description": "Zecwallet Fullnode (Electron version)", "scripts": { "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",