From e38c6ab62593b0b9b73c083e3991e1012df1b960 Mon Sep 17 00:00:00 2001 From: adityapk Date: Sat, 29 Aug 2020 20:52:39 -0700 Subject: [PATCH] v0.9.17 --- 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 4351c06e..74570398 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.16.AppImage +./Zecwallet.Fullnode-0.9.17.AppImage ``` If you prefer to install a `.deb` package, that is also available. ``` -sudo apt install -f ./zecwallet_0.9.16_amd64.deb +sudo apt install -f ./zecwallet_0.9.17_amd64.deb ``` ### Windows diff --git a/app/companion.js b/app/companion.js index 99b2d8af..5188f22c 100644 --- a/app/companion.js +++ b/app/companion.js @@ -389,7 +389,7 @@ export default class CompanionAppListener { maxzspendable, tokenName, zecprice, - serverversion: '0.9.16' + serverversion: '0.9.17' }; return JSON.stringify(resp); diff --git a/app/components/Sidebar.js b/app/components/Sidebar.js index bd32a85a..97602592 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.16
+
Zecwallet Fullnode v0.9.17
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 c4911c55..441ea31d 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.16", + "version": "0.9.17", "description": "Zecwallet Fullnode", "main": "./main.prod.js", "author": { diff --git a/bin/printversion.ps1 b/bin/printversion.ps1 index 0d6036ec..33a0c6de 100644 --- a/bin/printversion.ps1 +++ b/bin/printversion.ps1 @@ -1 +1 @@ -echo "::set-env name=VERSION::0.9.16" +echo "::set-env name=VERSION::0.9.17" diff --git a/bin/printversion.sh b/bin/printversion.sh index fd8b20fe..5b9f5d58 100755 --- a/bin/printversion.sh +++ b/bin/printversion.sh @@ -1,3 +1,3 @@ #!/bin/bash -VERSION="0.9.16" +VERSION="0.9.17" echo "::set-env name=VERSION::$VERSION" diff --git a/package.json b/package.json index d1d66943..379a8a04 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.16", + "version": "0.9.17", "description": "Zecwallet Fullnode (Electron version)", "scripts": { "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",