From 3c0a4fb809b33e9e9782166a1d1f67364898abc2 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Thu, 10 Sep 2020 10:32:10 -0700 Subject: [PATCH] v0.9.18 --- README.md | 4 ++-- app/companion.js | 2 +- app/components/Sidebar.js | 2 +- app/package.json | 2 +- bin/printversion.ps1 | 2 +- bin/printversion.sh | 2 +- package.json | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 74570398..e43f84b6 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.17.AppImage +./Zecwallet.Fullnode-0.9.18.AppImage ``` If you prefer to install a `.deb` package, that is also available. ``` -sudo apt install -f ./zecwallet_0.9.17_amd64.deb +sudo apt install -f ./zecwallet_0.9.18_amd64.deb ``` ### Windows diff --git a/app/companion.js b/app/companion.js index 5188f22c..9a7364d5 100644 --- a/app/companion.js +++ b/app/companion.js @@ -389,7 +389,7 @@ export default class CompanionAppListener { maxzspendable, tokenName, zecprice, - serverversion: '0.9.17' + serverversion: '0.9.18' }; return JSON.stringify(resp); diff --git a/app/components/Sidebar.js b/app/components/Sidebar.js index 97602592..3f1c84a2 100644 --- a/app/components/Sidebar.js +++ b/app/components/Sidebar.js @@ -226,7 +226,7 @@ class Sidebar extends PureComponent { openErrorModal( 'Zecwallet Fullnode',
-
Zecwallet Fullnode v0.9.17
+
Zecwallet Fullnode v0.9.18
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 441ea31d..e453989a 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.17", + "version": "0.9.18", "description": "Zecwallet Fullnode", "main": "./main.prod.js", "author": { diff --git a/bin/printversion.ps1 b/bin/printversion.ps1 index 33a0c6de..84304343 100644 --- a/bin/printversion.ps1 +++ b/bin/printversion.ps1 @@ -1 +1 @@ -echo "::set-env name=VERSION::0.9.17" +echo "::set-env name=VERSION::0.9.18" diff --git a/bin/printversion.sh b/bin/printversion.sh index 5b9f5d58..e20448e5 100755 --- a/bin/printversion.sh +++ b/bin/printversion.sh @@ -1,3 +1,3 @@ #!/bin/bash -VERSION="0.9.17" +VERSION="0.9.18" echo "::set-env name=VERSION::$VERSION" diff --git a/package.json b/package.json index 379a8a04..380e8612 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.17", + "version": "0.9.18", "description": "Zecwallet Fullnode (Electron version)", "scripts": { "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",