diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fa49a5..4ef601f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # rollup changelog +## 0.10.0 + +* Better sorting algorithm – sorting happens at the module level, rather than the statement level. This avoids certain edge cases +* IIFEs are ignored for the purposes of distinguishing between 'strong' and 'weak' dependencies +* Empty `var` declarations for exported bindings are omitted + ## 0.9.1 * Much faster statement insertion (fixes major 0.9.0 performance regression) diff --git a/package.json b/package.json index 6184bd8..c4277bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "0.9.1", + "version": "0.10.0", "description": "Next-generation ES6 module bundler", "main": "dist/rollup.js", "jsnext:main": "src/rollup.js",