From 23f7c19f52d0812ac29fe8856b1471fb8475fe4d Mon Sep 17 00:00:00 2001 From: Rich-Harris Date: Tue, 2 Jun 2015 14:59:09 -0400 Subject: [PATCH] -> 0.7.1 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 357e07f..c42ee04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # rollup changelog +## 0.7.1 + +* Named functions can be used as default exports from a bundle +* Method calls are assumed to mutate the owner (i.e. `foo.bar()` mutates `foo`) ([#13](https://github.com/rollup/rollup/issues/13)) +* `options.indent` can be used to control indentation of resulting bundle. `options.true` (default) means 'auto', `options.false` means empty string. Alternatively specify whitespace e.g. `' '` or `'\t'` ([#5](https://github.com/rollup/rollup/issues/5)) + ## 0.7.0 * Ensure statements are always separated by a newline ([#9](https://github.com/rollup/rollup/pull/9)) diff --git a/package.json b/package.json index eb28e96..dac7fd2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "0.7.0", + "version": "0.7.1", "description": "Next-generation ES6 module bundler", "main": "dist/rollup.js", "jsnext:main": "src/rollup.js",