diff --git a/CHANGELOG.md b/CHANGELOG.md index 016e28d..0a07924 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.0.0-rc.3](https://github.com/postcss-modules-local-by-default/compare/v4.0.0-rc.2...v4.0.0-rc.3) - 2020-10-08 + +### BREAKING CHANGE + +- minimum supported `postcss` version is `^8.1.0` + +### Fixes + +- minimum supported `Node.js` version is `^10 || ^12 || >= 14` +- compatibility with PostCSS 8 + ## [4.0.0-rc.2](https://github.com/postcss-modules-local-by-default/compare/v4.0.0-rc.1...v4.0.0-rc.2) - 2020-09-22 ### Fixes diff --git a/package.json b/package.json index 0815700..e0c4d2d 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "postcss-modules-values", - "version": "4.0.0-rc.2", + "version": "4.0.0-rc.3", "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files", "main": "src/index.js", "files": [ "src" ], "engines": { - "node": ">= 10.13.0 || >= 12.13.0 || >= 14" + "node": "^10 || ^12 || >= 14" }, "scripts": { "prettier": "prettier -l --ignore-path .gitignore .",