Skip to content

Commit 0ed86a5

Browse files
authored
minor release v0.11.0 (#168)
1 parent d012df0 commit 0ed86a5

File tree

6 files changed

+36
-1
lines changed

6 files changed

+36
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@ Version 9 of Highlight.js has reached EOL and is no longer supported.
22
Please upgrade or ask whatever dependency you are using to upgrade.
33
https://github.com/highlightjs/highlight.js/issues/2877
44

5+
## v0.11.0 (2021-02-23)
6+
7+
#### :star: Features
8+
* [#166](https://github.com/intlify/eslint-plugin-vue-i18n/pull/166) Add no-deprecated-i18n-places-prop rule ([@ota-meshi](https://github.com/ota-meshi))
9+
* [#167](https://github.com/intlify/eslint-plugin-vue-i18n/pull/167) Add no-i18n-t-path-prop rule ([@ota-meshi](https://github.com/ota-meshi))
10+
* [#165](https://github.com/intlify/eslint-plugin-vue-i18n/pull/165) Add no-deprecated-i18n-place-attr rule ([@ota-meshi](https://github.com/ota-meshi))
11+
* [#164](https://github.com/intlify/eslint-plugin-vue-i18n/pull/164) Add no-deprecated-i18n-component rule ([@ota-meshi](https://github.com/ota-meshi))
12+
13+
#### Committers: 1
14+
- Yosuke Ota ([@ota-meshi](https://github.com/ota-meshi))
15+
16+
Version 9 of Highlight.js has reached EOL and is no longer supported.
17+
Please upgrade or ask whatever dependency you are using to upgrade.
18+
https://github.com/highlightjs/highlight.js/issues/2877
19+
520
## v0.10.0 (2021-01-04)
621

722
#### :star: Features

docs/rules/no-deprecated-i18n-component.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: '@intlify/vue-i18n/no-deprecated-i18n-component'
33
description: disallow using deprecated `<i18n>` components (in Vue I18n 9.0.0+)
4+
since: v0.11.0
45
---
56

67
# @intlify/vue-i18n/no-deprecated-i18n-component
@@ -59,6 +60,10 @@ This rule reports use of deprecated `<i18n>` components (in Vue I18n 9.0.0+).
5960

6061
- [Vue I18n > Breaking Changes - Rename to `i18n-t` from `i18n`](https://vue-i18n.intlify.dev/guide/migration/breaking.html#rename-to-i18n-tfrom-i18n)
6162

63+
## :rocket: Version
64+
65+
This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0
66+
6267
## :mag: Implementation
6368

6469
- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-component.ts)

docs/rules/no-deprecated-i18n-place-attr.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: '@intlify/vue-i18n/no-deprecated-i18n-place-attr'
33
description: disallow using deprecated `place` attribute (Removed in Vue I18n 9.0.0+)
4+
since: v0.11.0
45
---
56

67
# @intlify/vue-i18n/no-deprecated-i18n-place-attr
@@ -89,6 +90,10 @@ This rule reports use of deprecated `place` attribute (Removed in Vue I18n 9.0.0
8990
- [Vue I18n > Breaking Changes - Remove place syntax with `place` attr and `places` prop](https://vue-i18n.intlify.dev/guide/migration/breaking.html#remove-place-syntax-with-place-attr-and-places-prop)
9091
- [Vue I18n (v8) > Component interpolation - Places syntax usage](https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage)
9192

93+
## :rocket: Version
94+
95+
This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0
96+
9297
## :mag: Implementation
9398

9499
- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-place-attr.ts)

docs/rules/no-deprecated-i18n-places-prop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: '@intlify/vue-i18n/no-deprecated-i18n-places-prop'
33
description: disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+)
4+
since: v0.11.0
45
---
56

67
# @intlify/vue-i18n/no-deprecated-i18n-places-prop
@@ -83,6 +84,10 @@ This rule reports use of deprecated `places` prop (Removed in Vue I18n 9.0.0+).
8384
- [Vue I18n > Breaking Changes - Remove place syntax with `place` attr and `places` prop](https://vue-i18n.intlify.dev/guide/migration/breaking.html#remove-place-syntax-with-place-attr-and-places-prop)
8485
- [Vue I18n (v8) > Component interpolation - Places syntax usage](https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage)
8586

87+
## :rocket: Version
88+
89+
This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0
90+
8691
## :mag: Implementation
8792

8893
- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-places-prop.ts)

docs/rules/no-i18n-t-path-prop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: '@intlify/vue-i18n/no-i18n-t-path-prop'
33
description: disallow using `path` prop with `<i18n-t>`
4+
since: v0.11.0
45
---
56

67
# @intlify/vue-i18n/no-i18n-t-path-prop
@@ -62,6 +63,10 @@ This rule reports use of `path` prop with `<i18n-t>` component.
6263

6364
- [Vue I18n > Breaking Changes - Rename to `keypath` prop from `path` prop](https://vue-i18n.intlify.dev/guide/migration/breaking.html#rename-to-keypath-prop-from-path-prop)
6465

66+
## :rocket: Version
67+
68+
This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0
69+
6570
## :mag: Implementation
6671

6772
- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-i18n-t-path-prop.ts)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@intlify/eslint-plugin-vue-i18n",
33
"description": "ESLint plugin for Vue I18n",
4-
"version": "0.10.0",
4+
"version": "0.11.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "kawakazu80@gmail.com"

0 commit comments

Comments
 (0)