diff --git a/docs/rules/prefer-import-from-vue.md b/docs/rules/prefer-import-from-vue.md index e645d916a..3190beac1 100644 --- a/docs/rules/prefer-import-from-vue.md +++ b/docs/rules/prefer-import-from-vue.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/prefer-import-from-vue description: enforce import from 'vue' instead of import from '@vue/*' +since: v8.5.0 --- # vue/prefer-import-from-vue > enforce import from 'vue' instead of import from '@vue/*' -- :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 @@ -46,6 +46,10 @@ import { ref } from '@vue/reactivity' Nothing. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v8.5.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-import-from-vue.js) diff --git a/docs/rules/prefer-true-attribute-shorthand.md b/docs/rules/prefer-true-attribute-shorthand.md index b2b521b6a..4dc6a07ef 100644 --- a/docs/rules/prefer-true-attribute-shorthand.md +++ b/docs/rules/prefer-true-attribute-shorthand.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/prefer-true-attribute-shorthand description: require shorthand form attribute when `v-bind` value is `true` +since: v8.5.0 --- # vue/prefer-true-attribute-shorthand > require shorthand form attribute when `v-bind` value is `true` -- :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 @@ -104,6 +104,10 @@ Default options is `"always"`. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v8.5.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-true-attribute-shorthand.js) diff --git a/package.json b/package.json index 4579c6545..7abecb3f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "8.4.1", + "version": "8.5.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {