diff --git a/CHANGELOG.md b/CHANGELOG.md index ad69f7a1c..76f1cce1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log This project adheres to [Semantic Versioning](https://semver.org/). +## 8.2.12 +* Fixed `package.json` exports. + ## 8.2.11 * Fixed `DEP0148` warning in Node.js 16. * Fixed docs (by @semiromid). diff --git a/lib/processor.js b/lib/processor.js index 376e619a8..8d32154cb 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.11' + this.version = '8.2.12' this.plugins = this.normalize(plugins) } diff --git a/package.json b/package.json index 0a4aa09a4..5ec807f6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postcss", - "version": "8.2.11", + "version": "8.2.12", "description": "Tool for transforming styles with JS plugins", "engines": { "node": "^10 || ^12 || >=14"