From e938c10881995008ee06e66a35c188cafbad74d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 3 Oct 2023 11:32:28 +0000 Subject: [PATCH] chore: release eslint-plugin-regexp (next) --- .changeset/pre.json | 2 ++ CHANGELOG.md | 10 ++++++++++ docs/rules/no-useless-string-literal.md | 3 ++- package.json | 2 +- 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 0ab0b21ce..ccd648715 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -22,6 +22,7 @@ "early-islands-press2", "friendly-walls-reply", "gold-baboons-clap", + "green-bananas-tie", "green-peaches-explode", "heavy-rings-reply", "hungry-eels-check", @@ -34,6 +35,7 @@ "lovely-brooms-explode", "neat-rats-sneeze", "nervous-yaks-destroy", + "purple-suns-carry", "rare-spiders-drop", "rich-ways-exercise", "short-dingos-dance", diff --git a/CHANGELOG.md b/CHANGELOG.md index ad968fe39..aefae8ff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # eslint-plugin-regexp +## 2.0.0-next.12 + +### Major Changes + +- Add `regexp/no-useless-string-literal` rule ([#639](https://github.com/ota-meshi/eslint-plugin-regexp/pull/639)) + +### Minor Changes + +- Add support for v flag to `regexp/no-empty-character-class` ([#637](https://github.com/ota-meshi/eslint-plugin-regexp/pull/637)) + ## 2.0.0-next.11 ### Major Changes diff --git a/docs/rules/no-useless-string-literal.md b/docs/rules/no-useless-string-literal.md index f9a3113fb..5dda6b756 100644 --- a/docs/rules/no-useless-string-literal.md +++ b/docs/rules/no-useless-string-literal.md @@ -3,6 +3,7 @@ pageClass: "rule-details" sidebarDepth: 0 title: "regexp/no-useless-string-literal" description: "disallow string disjunction of single characters in `\\q{...}`" +since: "v2.0.0-next.12" --- # regexp/no-useless-string-literal @@ -49,7 +50,7 @@ Nothing. ## :rocket: Version -:exclamation: ***This rule has not been released yet.*** +This rule was introduced in eslint-plugin-regexp v2.0.0-next.12 ## :mag: Implementation diff --git a/package.json b/package.json index 54feace2f..b61e170f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-regexp", - "version": "2.0.0-next.11", + "version": "2.0.0-next.12", "description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.", "engines": { "node": "^18 || >=20"