next-intl 2.9.0 → 2.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,6 +11,12 @@
11
11
 
12
12
  ![Gzipped size](https://badgen.net/bundlephobia/minzip/next-intl) ![Tree shaking supported](https://badgen.net/bundlephobia/tree-shaking/next-intl) [<img src="https://img.shields.io/npm/dw/next-intl.svg" />](https://www.npmjs.com/package/next-intl)
13
13
 
14
+ <hr />
15
+
16
+ **🚀 New ✨**: `next-intl` is adding support for **Next.js 13** and the [`app` directory](https://beta.nextjs.org/docs/routing/fundamentals). A preview version with support for React Server Components is [now available](https://next-intl-git-docs-next-13-amann.vercel.app/docs/next-13) for early adopters.
17
+
18
+ <hr />
19
+
14
20
  ## Features
15
21
 
16
22
  This library complements the [internationalized routing](https://nextjs.org/docs/advanced-features/i18n-routing) capabilities of Next.js by managing translations and providing them to components.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-intl",
3
- "version": "2.9.0",
3
+ "version": "2.9.2",
4
4
  "sideEffects": false,
5
5
  "author": "Jan Amann <jan@amann.me>",
6
6
  "description": "A minimal, but complete solution for internationalization in Next.js apps.",
@@ -42,7 +42,7 @@
42
42
  "testEnvironment": "jsdom"
43
43
  },
44
44
  "dependencies": {
45
- "use-intl": "^2.9.0"
45
+ "use-intl": "^2.9.2"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0",