Compare commits

...

3 Commits

Author SHA1 Message Date
Sven Slootweg cf02f6ac5f 1.0.1 8 years ago
Sven Slootweg ba0a214144 Update changelog 8 years ago
Sven Slootweg b2c1773d14 Add note regarding ES6 polyfill 8 years ago

@ -1,3 +1,7 @@
## 1.0.1 (August 16, 2016)
* __Documentation:__ Added note regarding the `es6-promise` polyfill.
## 1.0.0 (August 16, 2016)
First stable and documented release - however, the functionality or API has not changed from `0.0.1`.

@ -6,6 +6,8 @@ A `Promise.try` shim for ES6 Promises.
The goal of this module is to be *functionally equivalent* to Bluebird's `Promise.try` implementation. If you find that it behaves differently in some way, please file a bug.
__This module requires ES6 Promises to be available in your environment.__ If you are targeting a platform that doesn't (always) provide ES6 Promises natively, you will need to use a polyfill like [`es6-promise`](https://www.npmjs.com/package/es6-promise).
## License
[WTFPL](http://www.wtfpl.net/txt/copying/) or [CC0](https://creativecommons.org/publicdomain/zero/1.0/), whichever you prefer. A donation and/or attribution are appreciated, but not required.

@ -1,6 +1,6 @@
{
"name": "es6-promise-try",
"version": "1.0.0",
"version": "1.0.1",
"description": "Promise.try shim for ES6 Promises",
"main": "index.js",
"scripts": {

Loading…
Cancel
Save