Skip to content

Commit 3169d21

Browse files
authored
prerelease release v9.0.0-rc.1 (#279)
* prerelease release v9.0.0-rc.1 * updates * fix textlint error
1 parent 5344478 commit 3169d21

File tree

12 files changed

+33
-25
lines changed

12 files changed

+33
-25
lines changed

.textlintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ module.exports = {
2828
'JSON5',
2929
'HTTP',
3030
'CLI',
31+
'ICU',
3132
'CSP',
3233
'SFC',
3334
'PHP',

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v9.0.0-rc.1 (2021-01-06)
2+
3+
Vue I18n is entering RC :tada:
4+
5+
#### Committers: 1
6+
- kazuya kawaguchi ([@kazupon](https://github.com/kazupon))
7+
18

29
## v9.0.0-beta.18 (2021-01-01)
310

@@ -945,7 +952,7 @@ see the [API docs](https://kazupon.github.io/vue-i18n/api/)
945952

946953
### NOTE
947954

948-
* extend:
955+
* extend:
949956

950957

951958

@@ -1506,7 +1513,7 @@ In the examples, please refer to this [examples](https://github.com/kazupon/vue-
15061513
- locales <sup>DEPRECATED, use `messages` of `i18n` option (e.g `{ i18n: { messaes: ... } }`)</sup>
15071514

15081515
### Instance Properties
1509-
- $lang <sup>DEPRECATED, use `locale` of Vue instance property `$i18n` (e.g `vm.$i18n.locale = 'en'`)
1516+
- $lang <sup>DEPRECATED, use `locale` of Vue instance property `$i18n` (e.g `vm.$i18n.locale = 'en'`)
15101517

15111518
### VueI18n class <sup>NEW</sup>
15121519
- constructor options: See the [`I18nOptions` type](https://github.com/kazupon/vue-i18n/blob/dev/decls/i18n.js#L7-L15) of flowtype.
@@ -1832,7 +1839,7 @@ In the examples, please refer to this [examples](https://github.com/kazupon/vue-
18321839
### DEPRECATED
18331840

18341841
* **index:** plugin install `Vue.use` options (`options.locales`, `options.lang`). See [README](https://github.com/kazupon/vue-i18n/blob/dev/README.md)
1835-
1842+
18361843

18371844
<a name="2.4.1"></a>
18381845
## [2.4.1](https://github.com/kazupon/vue-i18n/compare/v2.4.0...v2.4.1) (2016-02-29)

docs/advanced/sfc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export default [
158158
[vite-plugin-vue-i18n](https://github.com/intlify/vite-plugin-vue-i18n) is vite plugin for [Vite](https://github.com/vitejs/vite).
159159

160160
:::tip REQUIREMENTS
161-
- vite: **v2-beta or later**.
161+
- vite: **v2-beta or later**
162162
- @vitejs/plugin-vue: **v1.0.4 or later**.
163163
:::
164164

docs/migration/breaking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ console.log(VueI18n.availability)
280280

281281
### Remove Custom formatter
282282

283-
**Reason**: Due to hard to provide custom formats in the new compiler and runtime APIs. We are planning to support it in the next major version to support in these APIs. if you would like to use ICU message format, you can use the [@formatjs/vue-intl](https://formatjs.io/docs/vue-intl/)
283+
**Reason**: Due to hard to provide custom formats in the new compiler and runtime APIs. We are planning to support it in the next major version to support in these APIs. If you would like to use ICU message format, you can use the [@formatjs/vue-intl](https://formatjs.io/docs/vue-intl/)
284284

285285
### Remove `preserveDirectiveContent` option
286286

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-i18n-next",
3-
"version": "9.0.0-beta.18",
3+
"version": "9.0.0-rc.1",
44
"license": "MIT",
55
"author": {
66
"name": "kazuya kawaguchi",

packages/core-base/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/core-base",
3-
"version": "9.0.0-beta.18",
3+
"version": "9.0.0-rc.1",
44
"description": "@intlify/core-base",
55
"keywords": [
66
"core",
@@ -33,10 +33,10 @@
3333
"jsdelivr": "dist/core-base.global.js",
3434
"types": "dist/core-base.d.ts",
3535
"dependencies": {
36-
"@intlify/message-compiler": "9.0.0-beta.18",
37-
"@intlify/message-resolver": "9.0.0-beta.18",
38-
"@intlify/runtime": "9.0.0-beta.18",
39-
"@intlify/shared": "9.0.0-beta.18"
36+
"@intlify/message-compiler": "9.0.0-rc.1",
37+
"@intlify/message-resolver": "9.0.0-rc.1",
38+
"@intlify/runtime": "9.0.0-rc.1",
39+
"@intlify/shared": "9.0.0-rc.1"
4040
},
4141
"engines": {
4242
"node": ">= 10"

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/core",
3-
"version": "9.0.0-beta.18",
3+
"version": "9.0.0-rc.1",
44
"description": "@intlify/core",
55
"keywords": [
66
"core",
@@ -33,7 +33,7 @@
3333
"jsdelivr": "dist/core.global.js",
3434
"types": "dist/core.d.ts",
3535
"dependencies": {
36-
"@intlify/core-base": "9.0.0-beta.18"
36+
"@intlify/core-base": "9.0.0-rc.1"
3737
},
3838
"engines": {
3939
"node": ">= 10"

packages/message-compiler/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/message-compiler",
3-
"version": "9.0.0-beta.18",
3+
"version": "9.0.0-rc.1",
44
"description": "@intlify/message-compiler",
55
"keywords": [
66
"compiler",
@@ -33,8 +33,8 @@
3333
"jsdelivr": "dist/message-compiler.global.js",
3434
"types": "dist/message-compiler.d.ts",
3535
"dependencies": {
36-
"@intlify/message-resolver": "9.0.0-beta.18",
37-
"@intlify/shared": "9.0.0-beta.18",
36+
"@intlify/message-resolver": "9.0.0-rc.1",
37+
"@intlify/shared": "9.0.0-rc.1",
3838
"source-map": "0.6.1"
3939
},
4040
"engines": {

packages/message-resolver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/message-resolver",
3-
"version": "9.0.0-beta.18",
3+
"version": "9.0.0-rc.1",
44
"description": "@intlify/message-resolver",
55
"keywords": [
66
"i18n",

packages/runtime/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/runtime",
3-
"version": "9.0.0-beta.18",
3+
"version": "9.0.0-rc.1",
44
"description": "@intlify/runtime",
55
"keywords": [
66
"i18n",
@@ -30,9 +30,9 @@
3030
"module": "dist/runtime.esm-bundler.js",
3131
"types": "dist/runtime.d.ts",
3232
"dependencies": {
33-
"@intlify/message-compiler": "9.0.0-beta.18",
34-
"@intlify/message-resolver": "9.0.0-beta.18",
35-
"@intlify/shared": "9.0.0-beta.18"
33+
"@intlify/message-compiler": "9.0.0-rc.1",
34+
"@intlify/message-resolver": "9.0.0-rc.1",
35+
"@intlify/shared": "9.0.0-rc.1"
3636
},
3737
"engines": {
3838
"node": ">= 10"

0 commit comments

Comments
 (0)