diff --git a/.changeset/pre.json b/.changeset/pre.json
index cb3da4428..0ab0b21ce 100644
--- a/.changeset/pre.json
+++ b/.changeset/pre.json
@@ -11,15 +11,20 @@
"calm-onions-yell",
"clean-kids-mate",
"clever-jobs-clap",
+ "cold-nails-teach",
+ "curly-ducks-fly",
"curvy-shoes-kiss",
"cyan-rats-attend",
"cyan-waves-notice",
"dry-horses-punch",
"early-guests-hug",
+ "early-islands-press",
+ "early-islands-press2",
"friendly-walls-reply",
"gold-baboons-clap",
"green-peaches-explode",
"heavy-rings-reply",
+ "hungry-eels-check",
"hungry-spoons-mix",
"itchy-trains-exist",
"khaki-colts-tell",
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d888e59bb..ad968fe39 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,23 @@
# eslint-plugin-regexp
+## 2.0.0-next.11
+
+### Major Changes
+
+- Add `regexp/simplify-set-operations` rule ([#595](https://github.com/ota-meshi/eslint-plugin-regexp/pull/595))
+
+- Add `regexp/no-empty-string-literal` rule ([#632](https://github.com/ota-meshi/eslint-plugin-regexp/pull/632))
+
+### Minor Changes
+
+- Add support for string literal to `regexp/no-empty-alternative` ([#633](https://github.com/ota-meshi/eslint-plugin-regexp/pull/633))
+
+- Improve `regexp/negation` rule to report nested negation character classes ([#595](https://github.com/ota-meshi/eslint-plugin-regexp/pull/595))
+
+### Patch Changes
+
+- fix: update regexpp ([#634](https://github.com/ota-meshi/eslint-plugin-regexp/pull/634))
+
## 2.0.0-next.10
### Major Changes
diff --git a/docs/rules/no-empty-string-literal.md b/docs/rules/no-empty-string-literal.md
index 3a472eb6e..1e342ef38 100644
--- a/docs/rules/no-empty-string-literal.md
+++ b/docs/rules/no-empty-string-literal.md
@@ -3,6 +3,7 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "regexp/no-empty-string-literal"
description: "disallow empty string literals in character classes"
+since: "v2.0.0-next.11"
---
# regexp/no-empty-string-literal
@@ -51,7 +52,7 @@ Nothing.
## :rocket: Version
-:exclamation: ***This rule has not been released yet.***
+This rule was introduced in eslint-plugin-regexp v2.0.0-next.11
## :mag: Implementation
diff --git a/docs/rules/simplify-set-operations.md b/docs/rules/simplify-set-operations.md
index 986fb3831..3146f457c 100644
--- a/docs/rules/simplify-set-operations.md
+++ b/docs/rules/simplify-set-operations.md
@@ -3,6 +3,7 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "regexp/simplify-set-operations"
description: "require simplify set operations"
+since: "v2.0.0-next.11"
---
# regexp/simplify-set-operations
@@ -84,7 +85,7 @@ Nothing.
## :rocket: Version
-:exclamation: ***This rule has not been released yet.***
+This rule was introduced in eslint-plugin-regexp v2.0.0-next.11
## :mag: Implementation
diff --git a/package.json b/package.json
index 7d88d79e3..54feace2f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-regexp",
- "version": "2.0.0-next.10",
+ "version": "2.0.0-next.11",
"description": "ESLint plugin for finding RegExp mistakes and RegExp style guide violations.",
"engines": {
"node": "^18 || >=20"