From d4442621f7877f367e0300056a37e82cfd65aaea Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Sun, 14 Feb 2021 10:29:04 -0800 Subject: [PATCH] v1.4.2 --- app/components/Sidebar.js | 2 +- app/package.json | 2 +- bin/printversion.ps1 | 2 +- bin/printversion.sh | 2 +- native/Cargo.toml | 2 +- package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/components/Sidebar.js b/app/components/Sidebar.js index 4c25066a..cececf70 100644 --- a/app/components/Sidebar.js +++ b/app/components/Sidebar.js @@ -261,7 +261,7 @@ class Sidebar extends PureComponent { openErrorModal( 'Zecwallet Lite',
-
Zecwallet Lite v1.4.1
+
Zecwallet Lite v1.4.2
Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.
The MIT License (MIT) Copyright (c) 2018-2020 Zecwallet diff --git a/app/package.json b/app/package.json index 975188a7..10c46f0d 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet-lite", "productName": "Zecwallet Lite", - "version": "1.4.1", + "version": "1.4.2", "description": "Zecwallet Lite", "main": "./main.prod.js", "author": { diff --git a/bin/printversion.ps1 b/bin/printversion.ps1 index ba65cbe9..20acb0dc 100644 --- a/bin/printversion.ps1 +++ b/bin/printversion.ps1 @@ -1 +1 @@ -echo "VERSION=1.4.1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append +echo "VERSION=1.4.2" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append diff --git a/bin/printversion.sh b/bin/printversion.sh index dca42f09..b7cce00f 100755 --- a/bin/printversion.sh +++ b/bin/printversion.sh @@ -1,3 +1,3 @@ #!/bin/bash -VERSION="1.4.1" +VERSION="1.4.2" echo "VERSION=$VERSION" >> $GITHUB_ENV diff --git a/native/Cargo.toml b/native/Cargo.toml index e536b7e3..5d142ce8 100644 --- a/native/Cargo.toml +++ b/native/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib"] neon-build = "0.3.3" [dependencies] -zecwalletlitelib = { git = "https://github.com/adityapk00/zecwallet-light-cli", rev = "0c14287ec9ded76e9865730aa498bc289b1525ff" } +zecwalletlitelib = { git = "https://github.com/adityapk00/zecwallet-light-cli", rev = "f051f4a996ea2899079ac23e4a716dc5c5cb6156" } #zecwalletlitelib = { path = "../../zecwallet-light-cli/lib" } neon = "0.3.3" lazy_static = "1.4.0" diff --git a/package.json b/package.json index a8c6db89..7b5199a3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet-lite", "productName": "Zecwallet Lite", - "version": "1.4.1", + "version": "1.4.2", "description": "Zecwallet Lite (Electron version)", "scripts": { "build": "yarn neon && concurrently \"yarn build-main\" \"yarn build-renderer\"",