Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.26 KB

CHANGELOG.md

File metadata and controls

48 lines (29 loc) · 1.26 KB

Master

3.0.2

  • correctly bump both bower and package.json versions

3.0.1

  • no longer include dist/test in npm releases

3.0.0

  • use nextTick() instead of setImmediate() to schedule microtasks with node 0.10. Later versions of nodes are not affected as they were already using nextTick(). Note that using nextTick() might trigger a depreciation warning on 0.10 as described at cujojs/when#410. The reason why nextTick() is preferred is that is setImmediate() would schedule a macrotask instead of a microtask and might result in a different scheduling. If needed you can revert to the former behavior as follow:

    var Promise = require('es6-promise').Promise; Promise._setScheduler(setImmediate);

2.3.0

  • #121: Ability to override the internal asap implementation
  • #120: Use an ascii character for an apostrophe, for source maps

2.2.0

  • #116: Expose asap() and a way to override the scheduling mechanism on Promise
  • Lock to v0.2.3 of ember-cli

2.1.1

  • Fix #100 via #105: tell browserify to ignore vertx require
  • Fix #101 via #102: "follow thenable state, not own state"

2.1.0

  • ? (see the commit log)

2.0.0

  • re-sync with RSVP. Many large performance improvements and bugfixes.

1.0.0

  • first subset of RSVP