diff --git a/docs/rules/component-options-name-casing.md b/docs/rules/component-options-name-casing.md index 9a956553b..d37ee9fce 100644 --- a/docs/rules/component-options-name-casing.md +++ b/docs/rules/component-options-name-casing.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/component-options-name-casing description: enforce the casing of component name in `components` options +since: v8.2.0 --- # vue/component-options-name-casing > enforce the casing of component name in `components` options -- :exclamation: ***This rule has not been released yet.*** - :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule. - :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions). @@ -159,6 +159,10 @@ export default { +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v8.2.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/component-options-name-casing.js) diff --git a/docs/rules/prefer-separate-static-class.md b/docs/rules/prefer-separate-static-class.md index 155c4fb5c..22df25e19 100644 --- a/docs/rules/prefer-separate-static-class.md +++ b/docs/rules/prefer-separate-static-class.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/prefer-separate-static-class description: require static class names in template to be in a separate `class` attribute +since: v8.2.0 --- # vue/prefer-separate-static-class > require static class names in template to be in a separate `class` attribute -- :exclamation: ***This rule has not been released yet.*** - :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule. ## :book: Rule Details @@ -37,6 +37,10 @@ This rule reports static class names in dynamic class attributes. Nothing. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v8.2.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-separate-static-class.js) diff --git a/package.json b/package.json index 96da9be83..bcc6bfcdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "8.1.1", + "version": "8.2.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {