Commit 293131cf authored by Stefan Penner's avatar Stefan Penner

Merge pull request #108 from Cyril-sf/2.0.3

version bump
parents ae4abbcc 5a854771
# master
# 2.0.3
* Fix useSetTimeout bug
# 2.0.2
* Adding RSVP#rethrow
......
......@@ -5,8 +5,7 @@ RSVP.js provides simple tools for organizing asynchronous code.
Specifically, it is a tiny implementation of Promises/A+ and a
mixin for turning objects into event targets.
It works in node and the browser. You can get the browser build in
`browser/rsvp.js` and `browser/rsvp.min.js`.
It works in node and the browser.
## downloads
......
{
"name": "rsvp",
"version": "2.0.2",
"version": "2.0.3",
"description": "A lightweight library that provides tools for organizing asynchronous code",
"main": "dist/commonjs/main.js",
"main": "rsvp",
"directories": {
"lib": "lib"
},
......
......@@ -6,7 +6,7 @@
</head>
<body>
<div id="mocha"></div>
<script src="../dist/rsvp-2.0.2.js"></script>
<script src="../dist/rsvp-2.0.3.js"></script>
<script src="vendor/assert.js"></script>
<script src="vendor/mocha.js"></script>
<script>mocha.setup({ ui: 'bdd', timeout: 200 }); mocha.globals(['setTimeout']);</script>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment