Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add maintenance status #2044

Merged
merged 3 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
public-hoist-pattern[]='@vue/*'
strict-peer-dependencies=false
strict-peer-dependencies=false
6 changes: 5 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function nav() {
},
{
text: 'Version',
items: [{ text: 'v8.x', link: 'https://kazupon.github.io/vue-i18n/' }]
items: [{ text: 'Maintenance Status', link: '/guide/extra/maintenance' }, { text: 'v8.x', link: 'https://kazupon.github.io/vue-i18n/' }]
},
{
text: 'Changelog',
Expand Down Expand Up @@ -224,6 +224,10 @@ function sidebarGuide() {
text: 'Extra Topics',
collapsible: true,
items: [
{
text: 'Maintenance Status',
link: '/guide/extra/maintenance'
},
{
text: 'Different Distribution files',
link: '/guide/extra/dist'
Expand Down
13 changes: 13 additions & 0 deletions docs/guide/extra/maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Maintenance Status

Vue I18n and related intlify packages has a lifecycle.

The following is the maintenance status for each version:

<img src="/lifecycle2024.svg" alt="Vue I18n Maintenance Status" />

> [!IMPORTANT]
The lifecycle of Vue I18n v10 has not yet been decided. It will be decided after the release of Vue I18n v11.

> [!NOTE]
The lifecycle period after v10 may change depending on the frequency of major releases.
4 changes: 4 additions & 0 deletions docs/guide/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ const members = [

# What is Vue I18n?

:::tip NOTE
If you would like to know more about the maintenance status of each version of Vue I18n, please see [here](./extra/maintenance).
:::

:::tip NOTE
Already know Vue I18n v8.x and just want to learn about what’s new in Vue I18n v9? Check out the [Migration Guide](./migration/breaking)!
:::
Expand Down
Loading
Loading