From 3910d18bc9c2b0184a0691d0257eb8c6e03c01d5 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 15 May 2015 00:28:47 +0100 Subject: [PATCH] add 5.4.0 changelog --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6c319729d..62ba0d1bb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,20 @@ _Note: Gaps between patch versions are faulty/broken releases._ See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog. +## 5.4.0 + + * **New Feature** + * Added [function bind syntax](https://github.com/zenparsing/es-function-bind) behind stage 0. Thanks [@RReverser](https://github.com/rreverser)! + * Added `env` option. Especially handy when using the `.babelrc`. + * **Bug Fix** + * Fix files not properly being ignored when `babel.transform` ignores them when using `$ babel`. + * Fix scope tracking registering loop head bindings to their `VariableDeclaration` instead of `VariableDeclarator`. + * **Polish** + * Normalise path separators for souce map paths when using `$ babel`. + * Rework `PathHoister` to ignore global references and to not deopt on reassignments to referenced bindings, instead it tries to hoist to the highest scope. + * Added missing exponential operator inlining. Thanks [@nkt](https://github.com/nkt)! + * Optimise `regenerator` transformer. Thanks [@benjamn](https://github.com/benjamn)! + ## 5.3.3 * **Bug Fix**