diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 03e75a9..794cd27 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
 {
-  ".": "0.13.1"
+  ".": "0.13.2"
 }
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7e8dc5e..cb9ded6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
 # Changelog
 
+## [0.13.2](https://github.com/eslint/json/compare/json-v0.13.1...json-v0.13.2) (2025-08-13)
+
+
+### Bug Fixes
+
+* allow any type for `meta.docs.recommended` in custom rules ([#132](https://github.com/eslint/json/issues/132)) ([d2c0d5a](https://github.com/eslint/json/commit/d2c0d5a98c54c61c626c4a3302d63227326d03c4))
+
 ## [0.13.1](https://github.com/eslint/json/compare/json-v0.13.0...json-v0.13.1) (2025-07-22)
 
 
diff --git a/jsr.json b/jsr.json
index 6dd3c72..d00b85d 100644
--- a/jsr.json
+++ b/jsr.json
@@ -1,6 +1,6 @@
 {
   "name": "@eslint/json",
-  "version": "0.13.1",
+  "version": "0.13.2",
   "exports": "./dist/esm/index.js",
   "publish": {
     "include": [
diff --git a/package.json b/package.json
index 441bc4f..fd192c3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@eslint/json",
-  "version": "0.13.1",
+  "version": "0.13.2",
   "description": "JSON linting plugin for ESLint",
   "author": "Nicholas C. Zakas",
   "type": "module",
diff --git a/src/index.js b/src/index.js
index f7605eb..d7b3992 100644
--- a/src/index.js
+++ b/src/index.js
@@ -19,7 +19,7 @@ import rules from "./build/rules.js";
 const plugin = {
 	meta: {
 		name: "@eslint/json",
-		version: "0.13.1", // x-release-please-version
+		version: "0.13.2", // x-release-please-version
 	},
 	languages: {
 		json: new JSONLanguage({ mode: "json" }),