From 5b647438644654198c70fcc5324282fd366aa4d1 Mon Sep 17 00:00:00 2001 From: Brian Ng Date: Fri, 7 Apr 2017 16:23:27 -0500 Subject: [PATCH] Update changelog (#253) --- experimental/babel-preset-env/CHANGELOG.md | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/experimental/babel-preset-env/CHANGELOG.md b/experimental/babel-preset-env/CHANGELOG.md index cadc79ca41..84535e75d6 100644 --- a/experimental/babel-preset-env/CHANGELOG.md +++ b/experimental/babel-preset-env/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## v1.3.1 (2017-04-07) + +### :bug: Bug Fix + +- Support electron version in a string format ([#252](https://github.com/babel/babel-preset-env/pull/252)) (@yavorsky) + +Adding electron as a target was an inadvertent breaking change as it no longer +allowed string versions. We added an exception for now, even though it is +inconsistent with other versions. Just as a note, the upcoming version 2.x will +allow _both_ number and string versions. + +### :rocket: New Feature + +- Allow use `babel-plugin-` prefix for include and exclude ([#242](https://github.com/babel/babel-preset-env/pull/242)) (@yavorsky) + +The `include` and `exclude` options now allow both prefixed (`babel-plugin-transform-es2015-spread`) +and prefix-less (`transform-es2015-spread`) plugin names. + +### :memo: Documentation + +- Note babel plugin prefix handling in include/exclude ([#245](https://github.com/babel/babel-preset-env/pull/245)) (@existentialism) +- Fix README: debug option shows info in stdout. ([#236](https://github.com/babel/babel-preset-env/pull/236)) (@Gerhut) + +### :house: Internal + +- Add simple smoke-test ([#240](https://github.com/babel/babel-preset-env/pull/240)) (@existentialism) +- Add prepublish script (@existentialism) + ## v1.3.0 (2017-03-30) ### :bug: Bug Fix