diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6ec15f..ad80afcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [3.0.0-beta.0](https://github.com/webpack-contrib/extract-text-webpack-plugin/compare/v2.1.2...v3.0.0-beta.0) (2017-06-23) + + +### Bug Fixes + +* add missing `options.ignoreOrder` details in Error message ([#539](https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/539)) ([dd43832](https://github.com/webpack-contrib/extract-text-webpack-plugin/commit/dd43832)) + + +### Code Refactoring + +* Apply webpack-defaults ([#542](https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/542)) ([292e217](https://github.com/webpack-contrib/extract-text-webpack-plugin/commit/292e217)) +* Chunk.modules deprecation warning ([28171b2](https://github.com/webpack-contrib/extract-text-webpack-plugin/commit/28171b2)) + + +### BREAKING CHANGES + +* Updates to `Chunk.mapModules`. This release is not backwards compatible with `Webpack 2.x` due to breaking changes in webpack/webpack#4764 +* Enforces `peerDependencies` of `"webpack": ">= 3.0.0-rc.0 || ^3.0.0"`. +* Enforces `engines` of `"node": ">=4.3.0 < 5.0.0 || >= 5.10` + + + ## [2.1.2](https://github.com/webpack-contrib/extract-text-webpack-plugin/compare/v2.1.1...v2.1.2) (2017-06-08) diff --git a/package-lock.json b/package-lock.json index e5846716..ed1afb56 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "extract-text-webpack-plugin", - "version": "2.1.2", + "version": "3.0.0-beta.0", "lockfileVersion": 1, "dependencies": { "abab": { diff --git a/package.json b/package.json index dbccea13..1c877d57 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "extract-text-webpack-plugin", - "version": "2.1.2", + "version": "3.0.0-beta.0", "author": "Tobias Koppers @sokra", "description": "Extract text from bundle into a file.", "license": "MIT",