diff --git a/CHANGELOG.md b/CHANGELOG.md index 700ce6d..74a0932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # rollup changelog +## 0.26.2 + +* Sanity check output of `load` hook ([#607](https://github.com/rollup/rollup/issues/607)) +* Correct scoping for ID class expressions ([#626](https://github.com/rollup/rollup/issues/626)) +* Warn if named and default exports are used together in auto mode ([#587](https://github.com/rollup/rollup/issues/587)) +* Allow variable initialisers to be rewritten if necessary ([#632](https://github.com/rollup/rollup/issues/632)) +* Prevent double `var` with no-treeshake option ([#639](https://github.com/rollup/rollup/pull/639)) + ## 0.26.1 * Add `treeshake: false`/`--no-treeshake` option for debugging ([#505](https://github.com/rollup/rollup/issues/505)) diff --git a/package.json b/package.json index 49f9e0e..87d776e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "0.26.1", + "version": "0.26.2", "description": "Next-generation ES6 module bundler", "main": "dist/rollup.js", "jsnext:main": "src/rollup.js",