Skip to content

v2.0.0

Choose a tag to compare

@hoodiebot hoodiebot released this 26 Dec 00:41

<a name"2.0.0">

2.0.0 (2016-12-26)

Bug Fixes

  • package: update @hoodie/account-client to version 5.0.0 (b65624e4)

Breaking Changes

  • Before
var account = new Account(options)
alert("Ohaj, " + account.username)

Now

var account = new Account(options)
account.ready.then(function () {
  alert("Ohaj, " + account.username)
})
```"

 ([4522bfb6](https://github.com/hoodiehq/hoodie-admin-client/commit/4522bfb6))