diff --git a/.changeset/pre.json b/.changeset/pre.json index ccd648715..8ed567c12 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -9,6 +9,7 @@ "beige-suns-clap", "brown-dragons-dance", "calm-onions-yell", + "chatty-walls-juggle", "clean-kids-mate", "clever-jobs-clap", "cold-nails-teach", @@ -25,6 +26,7 @@ "green-bananas-tie", "green-peaches-explode", "heavy-rings-reply", + "hungry-coins-help", "hungry-eels-check", "hungry-spoons-mix", "itchy-trains-exist", @@ -36,6 +38,7 @@ "neat-rats-sneeze", "nervous-yaks-destroy", "purple-suns-carry", + "quick-ties-bake", "rare-spiders-drop", "rich-ways-exercise", "short-dingos-dance", diff --git a/CHANGELOG.md b/CHANGELOG.md index aefae8ff3..175fe0ff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # eslint-plugin-regexp +## 2.0.0-next.13 + +### Minor Changes + +- Add `regexp/grapheme-string-literal` rule ([#646](https://github.com/ota-meshi/eslint-plugin-regexp/pull/646)) + +- Use Intl.Segmenter instead of grapheme-splitter ([#642](https://github.com/ota-meshi/eslint-plugin-regexp/pull/642)) + +### Patch Changes + +- fix: autofix for incorrect no-escaping in `regexp/no-useless-string-literal` ([#645](https://github.com/ota-meshi/eslint-plugin-regexp/pull/645)) + ## 2.0.0-next.12 ### Major Changes diff --git a/docs/rules/grapheme-string-literal.md b/docs/rules/grapheme-string-literal.md index a70e53ee2..3f5989810 100644 --- a/docs/rules/grapheme-string-literal.md +++ b/docs/rules/grapheme-string-literal.md @@ -3,6 +3,7 @@ pageClass: "rule-details" sidebarDepth: 0 title: "regexp/grapheme-string-literal" description: "enforce single grapheme in string literal" +since: "v2.0.0-next.13" --- # regexp/grapheme-string-literal @@ -47,7 +48,7 @@ Nothing. ## :rocket: Version -:exclamation: ***This rule has not been released yet.*** +This rule was introduced in eslint-plugin-regexp v2.0.0-next.13 ## :mag: Implementation diff --git a/package.json b/package.json index 597ea2a79..39152ff07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-regexp", - "version": "2.0.0-next.12", + "version": "2.0.0-next.13", "description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.", "engines": { "node": "^18 || >=20"