diff --git a/.changeset/mighty-buckets-hope.md b/.changeset/mighty-buckets-hope.md
deleted file mode 100644
index 90f661ca6..000000000
--- a/.changeset/mighty-buckets-hope.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"eslint-plugin-svelte": minor
----
-
-feat: update svelte-eslint-parser to v0.21
diff --git a/.changeset/poor-books-raise.md b/.changeset/poor-books-raise.md
deleted file mode 100644
index a78415a96..000000000
--- a/.changeset/poor-books-raise.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"eslint-plugin-svelte": minor
----
-
-feat: improve reporting range for `svelte/html-self-closing` rule.
diff --git a/.changeset/thick-boxes-warn.md b/.changeset/thick-boxes-warn.md
deleted file mode 100644
index acb45f2ee..000000000
--- a/.changeset/thick-boxes-warn.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"eslint-plugin-svelte": minor
----
-
-feat: add `svelte/no-dom-manipulating` rule
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c3f161396..13a60c28a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# eslint-plugin-svelte
+## 2.13.0
+
+### Minor Changes
+
+- [#303](https://github.com/ota-meshi/eslint-plugin-svelte/pull/303) [`747eae5`](https://github.com/ota-meshi/eslint-plugin-svelte/commit/747eae528d8aadc0d31a64f04baa8f2e557e80c6) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: update svelte-eslint-parser to v0.21
+
+- [#296](https://github.com/ota-meshi/eslint-plugin-svelte/pull/296) [`695e2e5`](https://github.com/ota-meshi/eslint-plugin-svelte/commit/695e2e50762bf004af9200d7d05958e5cea08f70) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve reporting range for `svelte/html-self-closing` rule.
+
+- [#302](https://github.com/ota-meshi/eslint-plugin-svelte/pull/302) [`f0d3e68`](https://github.com/ota-meshi/eslint-plugin-svelte/commit/f0d3e68f75f6a90d5f245313e96b3987fec6761f) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add `svelte/no-dom-manipulating` rule
+
## 2.12.0
### Minor Changes
diff --git a/docs/rules/no-dom-manipulating.md b/docs/rules/no-dom-manipulating.md
index 21f3aa6dd..cc99729d2 100644
--- a/docs/rules/no-dom-manipulating.md
+++ b/docs/rules/no-dom-manipulating.md
@@ -3,14 +3,13 @@ pageClass: "rule-details"
sidebarDepth: 0
title: "svelte/no-dom-manipulating"
description: "disallow DOM manipulating"
+since: "v2.13.0"
---
# svelte/no-dom-manipulating
> disallow DOM manipulating
-- :exclamation: **_This rule has not been released yet._**
-
## :book: Rule Details
In general, DOM manipulating should delegate to Svelte runtime. If you manipulate the DOM directly, the Svelte runtime may confuse because there is a difference between the actual DOM and the Svelte runtime's expected DOM.
@@ -103,6 +102,10 @@ See also .
Nothing.
+## :rocket: Version
+
+This rule was introduced in eslint-plugin-svelte v2.13.0
+
## :mag: Implementation
- [Rule source](https://github.com/ota-meshi/eslint-plugin-svelte/blob/main/src/rules/no-dom-manipulating.ts)
diff --git a/package.json b/package.json
index c415b2200..074a500c0 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-svelte",
- "version": "2.12.0",
+ "version": "2.13.0",
"description": "ESLint plugin for Svelte using AST",
"repository": "git+https://github.com/ota-meshi/eslint-plugin-svelte.git",
"homepage": "https://ota-meshi.github.io/eslint-plugin-svelte",