diff --git a/changelog.md b/changelog.md index eefa4a0..cb06e44 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and follows [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.1.0] - 2024-03-25 +### Added +- New `cssDeclarationSorterCustomOrder` option to sort properties using an array in a custom order, thanks to @SavaCool122! ✨ + ## [2.0.1] - 2023-10-01 ### Fixed - Use latest css-declaration-sorter version. @@ -32,6 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) ## [1.0.0] - 2021-07-27 Initial release. +[2.1.0]: https://github.com/Siilwyn/prettier-plugin-css-order/compare/v2.0.1...v2.1.0 [2.0.1]: https://github.com/Siilwyn/prettier-plugin-css-order/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/Siilwyn/prettier-plugin-css-order/compare/v1.3.1...v2.0.0 [1.3.1]: https://github.com/Siilwyn/prettier-plugin-css-order/compare/v1.3.0...v1.3.1 diff --git a/package-lock.json b/package-lock.json index 2c74eb5..06d6cb7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "prettier-plugin-css-order", - "version": "2.0.1", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "prettier-plugin-css-order", - "version": "2.0.1", + "version": "2.1.0", "license": "ISC", "dependencies": { "css-declaration-sorter": "^7.1.1", diff --git a/package.json b/package.json index b89f091..c26b718 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prettier-plugin-css-order", - "version": "2.0.1", + "version": "2.1.0", "description": "Sort CSS declarations in a certain order.", "type": "module", "main": "./src/main.mjs",