From 8b68d1ce90b30b00154c291e30a16ab22a1096ff Mon Sep 17 00:00:00 2001 From: Rich-Harris Date: Sat, 9 Jan 2016 09:29:51 -0500 Subject: [PATCH] -> 0.24.1 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e12f8a..c60403b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # rollup changelog +## 0.24.1 + +* Handle calls to default exports other that are not function expressions or references to function declarations ([#421](https://github.com/rollup/rollup/issues/421)) +* Ensure namespace blocks are created for chained imports ([#430](https://github.com/rollup/rollup/issues/430)) +* Include references in computed property keys ([#434](https://github.com/rollup/rollup/issues/434)) +* Use CLI `--external` option correctly ([#417](https://github.com/rollup/rollup/pull/417)) +* Allow relative imports to be treated as external, if absolute paths are provided in `options.external` ([#410](https://github.com/rollup/rollup/issues/410)) +* Make IIFE output adhere to Crockford style ([#415](https://github.com/rollup/rollup/pull/415)) + ## 0.24.0 * No longer attempts to resolve IDs in `options.external` ([#407](https://github.com/rollup/rollup/issues/407)) diff --git a/package.json b/package.json index 7270025..09488dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "0.24.0", + "version": "0.24.1", "description": "Next-generation ES6 module bundler", "main": "dist/rollup.js", "jsnext:main": "src/rollup.js",