diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b7c8a..fff4d12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2.0.0 (2018-06-04) + * Require Webpack 4. Use tapable api + * Require NodeJS 6+. Move to ES6 syntax + * Print human readable sizes (#3) + ## 1.1.0 (2016-05-14) * Fix external sourcemaps (#2) diff --git a/LICENSE b/LICENSE index 8a35fb6..6e2e111 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016 Pavel Klimashkin +Copyright (c) 2016-2018 Pavel Klimashkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index 26dbc52..572759f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "postcss-assets-webpack-plugin", "description": "Webpack plugin to apply postcss on webpack's emit event", - "version": "2.0.0-alpha.1", + "version": "2.0.0", "license": "MIT", "author": "Pavel Klimashkin", "homepage": "https://github.com/klimashkin/postcss-assets-webpack-plugin", @@ -15,6 +15,9 @@ "email": "klimashkin@gmail.com" }, "main": "index.js", + "peerDependencies": { + "webpack": "^4.10.2" + }, "dependencies": { "fancy-log": "^1.3.2", "human-size": "^1.1.0",