From ecd9f927d1d569d5e3984ac0dad2c7a89e0f64f1 Mon Sep 17 00:00:00 2001 From: Matthew Slipper Date: Tue, 17 Mar 2020 15:11:09 -0700 Subject: [PATCH] Fix reveal state bug; release v0.2.8 --- CHANGELOG.md | 4 ++++ app/pages/Auction/BidActionPanel/Reveal.js | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d2387a9d..c7ec258b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.8] - 2020-03-17 +### Fixed +- Fixed a crash when names transitioned from the bidding to revealing state + ## [0.2.7] - 2020-03-16 ### Added - Added an additional warning to the reset screen to highlight how bids need to be re-imported after deleting a wallet diff --git a/app/pages/Auction/BidActionPanel/Reveal.js b/app/pages/Auction/BidActionPanel/Reveal.js index 14c434674..8db21e3c8 100644 --- a/app/pages/Auction/BidActionPanel/Reveal.js +++ b/app/pages/Auction/BidActionPanel/Reveal.js @@ -164,8 +164,8 @@ class Reveal extends Component { return (
- You will lose {displayBalance(totalMasks, true)} if you don't reveal before - + You will lose {displayBalance(totalMasks, true)} if you don't reveal before{' '} +
); } diff --git a/package.json b/package.json index ea5aec9ff..f3f6b9d3f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bob-wallet", "productName": "Bob", "author": "Kyokan Group, Inc.", - "version": "0.2.7", + "version": "0.2.8", "description": "A Handshake wallet and auction manager.", "scripts": { "build": "./scripts/package.sh",