diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ce95f..ec9dd2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ 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. + +## [1.2.1](https://github.com/webpack-contrib/cache-loader/compare/v1.2.0...v1.2.1) (2018-02-26) + + +### Bug Fixes + +* **package:** add `webpack >= v4.0.0` (`peerDependencies`) ([#32](https://github.com/webpack-contrib/cache-loader/issues/32)) ([a5e921c](https://github.com/webpack-contrib/cache-loader/commit/a5e921c)) + + + # [1.2.0](https://github.com/webpack-contrib/cache-loader/compare/v1.1.0...v1.2.0) (2017-11-17) diff --git a/package-lock.json b/package-lock.json index cd113fa..7b6b8dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cache-loader", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 33bb42a..467f90b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cache-loader", - "version": "1.2.0", + "version": "1.2.1", "description": "Caches the result of following loaders on disk.", "author": "Tobias Koppers @sokra", "license": "MIT", @@ -15,7 +15,7 @@ "lint": "eslint --cache src test", "lint-staged": "lint-staged", "prebuild": "npm run clean", - "prepublish": "npm run build", + "prepare": "npm run build", "release": "standard-version", "security": "nsp check", "test": "jest", @@ -25,7 +25,7 @@ "travis:lint": "npm run lint && npm run security", "travis:test": "npm run test -- --runInBand", "appveyor:test": "npm run test", - "webpack-defaults": "webpack-defaults" + "defaults": "webpack-defaults" }, "dependencies": { "async": "^2.4.1", @@ -53,7 +53,7 @@ "webpack-defaults": "^1.6.0" }, "engines": { - "node": ">= 4.3 < 5.0.0 || >= 5.10" + "node": ">= 4.8 < 5.0.0 || >= 5.10" }, "peerDependencies": { "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"