diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c3871676..ad69f7a1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log This project adheres to [Semantic Versioning](https://semver.org/). +## 8.2.11 +* Fixed `DEP0148` warning in Node.js 16. +* Fixed docs (by @semiromid). + ## 8.2.10 * Fixed ReDoS vulnerabilities in source map parsing. * Fixed webpack 5 support (by Barak Igal). diff --git a/lib/processor.js b/lib/processor.js index c442a5fd5..376e619a8 100644 --- a/lib/processor.js +++ b/lib/processor.js @@ -5,7 +5,7 @@ let Root = require('./root') class Processor { constructor(plugins = []) { - this.version = '8.2.10' + this.version = '8.2.11' this.plugins = this.normalize(plugins) } diff --git a/package.json b/package.json index 071ba0513..2f155b1f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postcss", - "version": "8.2.10", + "version": "8.2.11", "description": "Tool for transforming styles with JS plugins", "engines": { "node": "^10 || ^12 || >=14"