diff --git a/CHANGELOG.md b/CHANGELOG.md index a4b481e6b2..15268bd5a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,21 @@ _Note: Gaps between patch versions are faulty/broken releases._ See [CHANGELOG - 6to5](CHANGELOG-6to5.md) for the pre-4.0.0 version changelog. +## 5.5.8 + + * **Internal** + * Remove extremely unprofessional and harsh error message for those hotlinking to `resolve-rc`. + +## 5.5.7 + + * **Bug Fix** + * Push newline after decorators when doing code gen. + * Rewriting error handling to normalise options before merging them. + * Remove duplicate keys in `alias-keys.json` causing errors in strict mode. + * Fix `$ babel --help` not showing optional transformers as such. + * **New Feature** + * Add `auxiliaryCommentBefore` and `auxiliaryCommentAfter` options. + ## 5.5.6 * **Bug Fix** diff --git a/packages/babel-cli/package.json b/packages/babel-cli/package.json index 85e2ee0c17..048f398777 100644 --- a/packages/babel-cli/package.json +++ b/packages/babel-cli/package.json @@ -1,14 +1,14 @@ { "name": "babel", "description": "Turn ES6 code into readable vanilla ES5 with source maps", - "version": "5.5.7", + "version": "5.5.8", "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", "repository": "babel/babel", "preferGlobal": true, "dependencies": { - "babel-core": "^5.5.7", + "babel-core": "^5.5.8", "chokidar": "^1.0.0", "commander": "^2.6.0", "convert-source-map": "^1.1.0", diff --git a/packages/babel-runtime/package.json b/packages/babel-runtime/package.json index 42c6cecebc..ca31baf719 100644 --- a/packages/babel-runtime/package.json +++ b/packages/babel-runtime/package.json @@ -1,7 +1,7 @@ { "name": "babel-runtime", "description": "babel selfContained runtime", - "version": "5.5.7", + "version": "5.5.8", "license": "MIT", "repository": "babel/babel", "author": "Sebastian McKenzie ",