diff --git a/docs/rules/no-restricted-html-elements.md b/docs/rules/no-restricted-html-elements.md index 780708d6a..15a62447f 100644 --- a/docs/rules/no-restricted-html-elements.md +++ b/docs/rules/no-restricted-html-elements.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-restricted-html-elements description: disallow specific HTML elements +since: v8.6.0 --- # vue/no-restricted-html-elements > disallow specific HTML elements -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details This rule allows you to specify HTML elements that you don't want to use in your application. @@ -90,6 +89,10 @@ The following properties can be specified for the object. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v8.6.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-restricted-html-elements.js) diff --git a/docs/rules/prefer-prop-type-boolean-first.md b/docs/rules/prefer-prop-type-boolean-first.md index 3bf2edb4a..1b652fafd 100644 --- a/docs/rules/prefer-prop-type-boolean-first.md +++ b/docs/rules/prefer-prop-type-boolean-first.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/prefer-prop-type-boolean-first description: enforce `Boolean` comes first in component prop types +since: v8.6.0 --- # vue/prefer-prop-type-boolean-first > enforce `Boolean` comes first in component prop types -- :exclamation: ***This rule has not been released yet.*** - :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions). ## :book: Rule Details @@ -54,6 +54,10 @@ export default { - [vue/prefer-true-attribute-shorthand](./prefer-true-attribute-shorthand.md) +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v8.6.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-prop-type-boolean-first.js) diff --git a/package.json b/package.json index 4b843c06b..86f9417e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "8.5.0", + "version": "8.6.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {