Skip to content

v0.9.1

Compare
Choose a tag to compare
@bartekn bartekn released this 28 Jun 11:42
· 434 commits to master since this release

Breaking changes

  • stellar-sdk is now using native Promise instead of bluebird. The catch function is different. Instead of:

    .catch(StellarSdk.NotFoundError, function (err) { /* ... */ })

    please use the following snippet:

    .catch(function (err) {
      if (err instanceof StellarSdk.NotFoundError) { /* ... */ }
    })
  • We no longer support IE 11, Firefox < 42, Chrome < 49.

Changes

  • Fixed _ is undefined bug.
  • Minified browser build is around 130 KB smaller! 🎊