diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b0858961..6ba8d565b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log This project adheres to [Semantic Versioning](https://semver.org/). +## 8.4.27 +* Fixed `Container` clone methods types. + ## 8.4.26 * Fixed clone methods types. diff --git a/lib/processor.js b/lib/processor.js index 8fa787d35..325bcc6df 100644 --- a/lib/processor.js +++ b/lib/processor.js @@ -7,7 +7,7 @@ let Root = require('./root') class Processor { constructor(plugins = []) { - this.version = '8.4.26' + this.version = '8.4.27' this.plugins = this.normalize(plugins) } diff --git a/package.json b/package.json index f2dc40f5c..4648bac4b 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postcss", - "version": "8.4.26", + "version": "8.4.27", "description": "Tool for transforming styles with JS plugins", "engines": { "node": "^10 || ^12 || >=14"