diff --git a/CHANGELOG.md b/CHANGELOG.md index 60ea69e5a..b23cc8fea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.17.5 (2024-08-23) + +### Bug Fixes + +* Lazy init message formatter for improved tree shaking in case `useTranslations` is only used in Server Components ([#1279](https://github.com/amannn/next-intl/issues/1279)) ([9f1725c](https://github.com/amannn/next-intl/commit/9f1725c20b8c542e46f197c2afa2b066e1293a7a)) – by @amannn + ## 3.17.4 (2024-08-20) ### Bug Fixes diff --git a/lerna.json b/lerna.json index b8fff901d..10bb6c582 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "3.17.4", + "version": "3.17.5", "packages": [ "packages/*" ], diff --git a/packages/next-intl/CHANGELOG.md b/packages/next-intl/CHANGELOG.md index ba9d9f60e..b59f92eae 100644 --- a/packages/next-intl/CHANGELOG.md +++ b/packages/next-intl/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.17.5 (2024-08-23) + +### Bug Fixes + +* Lazy init message formatter for improved tree shaking in case `useTranslations` is only used in Server Components ([#1279](https://github.com/amannn/next-intl/issues/1279)) ([9f1725c](https://github.com/amannn/next-intl/commit/9f1725c20b8c542e46f197c2afa2b066e1293a7a)) – by @amannn + ## 3.17.4 (2024-08-20) ### Bug Fixes diff --git a/packages/next-intl/package.json b/packages/next-intl/package.json index d7b40b824..bd191f21a 100644 --- a/packages/next-intl/package.json +++ b/packages/next-intl/package.json @@ -1,6 +1,6 @@ { "name": "next-intl", - "version": "3.17.4", + "version": "3.17.5", "sideEffects": false, "author": "Jan Amann ", "funding": [ diff --git a/packages/use-intl/CHANGELOG.md b/packages/use-intl/CHANGELOG.md index b8428e770..277dc4dcf 100644 --- a/packages/use-intl/CHANGELOG.md +++ b/packages/use-intl/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.17.5 (2024-08-23) + +### Bug Fixes + +* Lazy init message formatter for improved tree shaking in case `useTranslations` is only used in Server Components ([#1279](https://github.com/amannn/next-intl/issues/1279)) ([9f1725c](https://github.com/amannn/next-intl/commit/9f1725c20b8c542e46f197c2afa2b066e1293a7a)) – by @amannn + ## 3.17.4 (2024-08-20) ### Bug Fixes diff --git a/packages/use-intl/package.json b/packages/use-intl/package.json index 2f5949525..bc1183e06 100644 --- a/packages/use-intl/package.json +++ b/packages/use-intl/package.json @@ -1,6 +1,6 @@ { "name": "use-intl", - "version": "3.17.4", + "version": "3.17.5", "sideEffects": false, "author": "Jan Amann ", "description": "Internationalization (i18n) for React",