diff --git a/CHANGELOG.md b/CHANGELOG.md index f5a5c2d..bc2f704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v1.7.0 + +[compare changes](https://github.com/schoero/eslint-plugin-readable-tailwind/compare/v1.6.1...v1.7.0) + +### Features + +- New option `preferSingleLine` ([#54](https://github.com/schoero/eslint-plugin-readable-tailwind/pull/54)) + ## v1.6.1 [compare changes](https://github.com/schoero/eslint-plugin-readable-tailwind/compare/v1.6.0...v1.6.1) @@ -14,7 +22,7 @@ ### Features -- New rule "no-duplicate-classes" ([#49](https://github.com/schoero/eslint-plugin-readable-tailwind/pull/49)) +- New rule `no-duplicate-classes` ([#49](https://github.com/schoero/eslint-plugin-readable-tailwind/pull/49)) This rule will be enabled by default in v2.0.0. If you want to enable it now, please refer to the [rule documentation](https://github.com/schoero/eslint-plugin-readable-tailwind/blob/main/docs/rules/no-duplicate-classes.md). You can suggest additional rules in the [discussions](https://github.com/schoero/eslint-plugin-readable-tailwind/discussions/categories/new-rules-or-options?discussions_q=category%3A%22New+rules+or+options%22+). diff --git a/package-lock.json b/package-lock.json index 4527985..9da1ff9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "eslint-plugin-readable-tailwind", - "version": "1.6.1", + "version": "1.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "eslint-plugin-readable-tailwind", - "version": "1.6.1", + "version": "1.7.0", "license": "MIT", "devDependencies": { "@html-eslint/parser": "^0.26.0", diff --git a/package.json b/package.json index 4f55768..e1d5efc 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.6.1", + "version": "1.7.0", "type": "module", "name": "eslint-plugin-readable-tailwind", "description": "auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.",