diff --git a/CHANGELOG.md b/CHANGELOG.md index dad76d8a8..c8c9d7059 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.15.3 (2024-06-26) + +### Bug Fixes + +* Prefer more specific routes in `usePathname` when detecting the currently active pathname for localized pathnames ([#1152](https://github.com/amannn/next-intl/issues/1152)) ([936839e](https://github.com/amannn/next-intl/commit/936839e9508e447f3e60cc1f606258fd00e5227e)), closes [#1151](https://github.com/amannn/next-intl/issues/1151) – by @amannn + ## 3.15.2 (2024-06-19) **Note:** Version bump only for package root diff --git a/lerna.json b/lerna.json index 56414074b..55559dc84 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "3.15.2", + "version": "3.15.3", "packages": [ "packages/*" ], diff --git a/packages/next-intl/CHANGELOG.md b/packages/next-intl/CHANGELOG.md index ac7de486a..5c5b8f766 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.15.3 (2024-06-26) + +### Bug Fixes + +* Prefer more specific routes in `usePathname` when detecting the currently active pathname for localized pathnames ([#1152](https://github.com/amannn/next-intl/issues/1152)) ([936839e](https://github.com/amannn/next-intl/commit/936839e9508e447f3e60cc1f606258fd00e5227e)), closes [#1151](https://github.com/amannn/next-intl/issues/1151) – by @amannn + ## 3.15.2 (2024-06-19) **Note:** Version bump only for package next-intl diff --git a/packages/next-intl/package.json b/packages/next-intl/package.json index ddc634c3f..bed900154 100644 --- a/packages/next-intl/package.json +++ b/packages/next-intl/package.json @@ -1,6 +1,6 @@ { "name": "next-intl", - "version": "3.15.2", + "version": "3.15.3", "sideEffects": false, "author": "Jan Amann ", "funding": [ diff --git a/packages/use-intl/CHANGELOG.md b/packages/use-intl/CHANGELOG.md index e92ab5cfb..f8b9f9aa3 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.15.3 (2024-06-26) + +### Bug Fixes + +* Prefer more specific routes in `usePathname` when detecting the currently active pathname for localized pathnames ([#1152](https://github.com/amannn/next-intl/issues/1152)) ([936839e](https://github.com/amannn/next-intl/commit/936839e9508e447f3e60cc1f606258fd00e5227e)), closes [#1151](https://github.com/amannn/next-intl/issues/1151) – by @amannn + ## 3.15.2 (2024-06-19) **Note:** Version bump only for package use-intl diff --git a/packages/use-intl/package.json b/packages/use-intl/package.json index 2f0b3adc1..0cdc48cd7 100644 --- a/packages/use-intl/package.json +++ b/packages/use-intl/package.json @@ -1,6 +1,6 @@ { "name": "use-intl", - "version": "3.15.2", + "version": "3.15.3", "sideEffects": false, "author": "Jan Amann ", "description": "Internationalization (i18n) for React",