From d7a75fc41880a1909afa948995840643f55c1948 Mon Sep 17 00:00:00 2001 From: Joshua Wiens Date: Mon, 10 Jul 2017 16:05:25 -0500 Subject: [PATCH] chore(release): 3.0.0 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30fe71db..6146ce53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ 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](https://github.com/webpack-contrib/extract-text-webpack-plugin/compare/v2.1.2...v3.0.0) (2017-07-10) + + +### 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 & webpack 3.x support ([#540](https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/540)) ([7ae32d9](https://github.com/webpack-contrib/extract-text-webpack-plugin/commit/7ae32d9)) + + +### BREAKING CHANGES + +* Enforces `engines` of `"node": ">=4.3.0 < 5.0.0 || >= 5.10` + +- refactor: DeprecationWarning: Chunk.modules [543](https://github.com/webpack-contrib/extract-text-webpack-plugin/pull/543) +* Updates to `Chunk.mapModules`. This release is not backwards compatible with `Webpack 2.x` due to breaking changes in webpack/webpack#4764 + +- fix: css generation order issue see: webpack/webpack#5225 +* Enforces `peerDependencies` of `"webpack": "^3.1.0"`. + + + # [3.0.0-rc.2](https://github.com/webpack-contrib/extract-text-webpack-plugin/compare/v3.0.0-rc.1...v3.0.0-rc.2) (2017-07-10) diff --git a/package-lock.json b/package-lock.json index 99663333..f6952f1a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "extract-text-webpack-plugin", - "version": "3.0.0-rc.2", + "version": "3.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 978af84d..97867556 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "extract-text-webpack-plugin", - "version": "3.0.0-rc.2", + "version": "3.0.0", "author": "Tobias Koppers @sokra", "description": "Extract text from bundle into a file.", "license": "MIT",