Commit 5a854771 authored by Cyril Fluck's avatar Cyril Fluck

version bump

parent ae4abbcc
# master # master
# 2.0.3
* Fix useSetTimeout bug
# 2.0.2 # 2.0.2
* Adding RSVP#rethrow * Adding RSVP#rethrow
......
...@@ -5,8 +5,7 @@ RSVP.js provides simple tools for organizing asynchronous code. ...@@ -5,8 +5,7 @@ RSVP.js provides simple tools for organizing asynchronous code.
Specifically, it is a tiny implementation of Promises/A+ and a Specifically, it is a tiny implementation of Promises/A+ and a
mixin for turning objects into event targets. mixin for turning objects into event targets.
It works in node and the browser. You can get the browser build in It works in node and the browser.
`browser/rsvp.js` and `browser/rsvp.min.js`.
## downloads ## downloads
......
{ {
"name": "rsvp", "name": "rsvp",
"version": "2.0.2", "version": "2.0.3",
"description": "A lightweight library that provides tools for organizing asynchronous code", "description": "A lightweight library that provides tools for organizing asynchronous code",
"main": "dist/commonjs/main.js", "main": "rsvp",
"directories": { "directories": {
"lib": "lib" "lib": "lib"
}, },
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
</head> </head>
<body> <body>
<div id="mocha"></div> <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/assert.js"></script>
<script src="vendor/mocha.js"></script> <script src="vendor/mocha.js"></script>
<script>mocha.setup({ ui: 'bdd', timeout: 200 }); mocha.globals(['setTimeout']);</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