Skip to content

Commit

Permalink
Merge pull request #1213 from aeternity/release/v0.8.1
Browse files Browse the repository at this point in the history
Release 0.8.1
  • Loading branch information
etharner authored Jul 11, 2021
2 parents aee4d30 + a7193df commit d9bc2e7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.8.1](https://github.com/aeternity/superhero-wallet/compare/v0.8.0...v0.8.1) (2021-07-09)


### Bug Fixes

* **wallet:** don't set accounts immediately ([d0e5c52](https://github.com/aeternity/superhero-wallet/commit/d0e5c5207feefdfd74fb139c5079d2bfe7b2a563))

## [0.8.0](https://github.com/aeternity/superhero-wallet/compare/v0.7.2...v0.8.0) (2021-07-09)


Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<widget id="com.superhero.cordova" version="0.8.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.superhero.cordova" version="0.8.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Superhero</name>
<description>Superhero wallet</description>
<author email="[email protected]" href="http://cordova.io">
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "superhero-wallet",
"version": "0.8.0",
"version": "0.8.1",
"description": "Superhero wallet",
"author": "Superhero",
"license": "MIT",
Expand Down
1 change: 0 additions & 1 deletion src/lib/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ export default async function initSdk() {
store.watch(
(state, getters) => getters.accounts.length,
() => store.commit('setSdkAccounts', store.getters.accounts),
{ immediate: true },
);
} catch (e) {
store.commit('setNodeStatus', 'error');
Expand Down

0 comments on commit d9bc2e7

Please sign in to comment.