Skip to content

Commit 197bcd9

Browse files
chore(release): published v5.5.2 [skip ci] (#2358)
1 parent a9fdf3f commit 197bcd9

File tree

37 files changed

+174
-95
lines changed

37 files changed

+174
-95
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.5.2](https://github.com/lingui/js-lingui/compare/v5.5.1...v5.5.2) (2025-10-30)
7+
8+
### Bug Fixes
9+
10+
* **cli:** process hang when error happend in extract ([#2349](https://github.com/lingui/js-lingui/issues/2349)) ([09ab46d](https://github.com/lingui/js-lingui/commit/09ab46d4097744975d4e76b3d713de7ce1ba30fc))
11+
* **macro:** correctly update bindings after transformation ([#2356](https://github.com/lingui/js-lingui/issues/2356)) ([a9fdf3f](https://github.com/lingui/js-lingui/commit/a9fdf3f0ce69314ab8eaae6668d8c6daa48b3f2a))
12+
613
## [5.5.1](https://github.com/lingui/js-lingui/compare/v5.5.0...v5.5.1) (2025-10-10)
714

815
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.5.1",
2+
"version": "5.5.2",
33
"packages": ["packages/*"],
44
"npmClient": "yarn",
55
"command": {

packages/babel-plugin-extract-messages/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.5.2](https://github.com/lingui/js-lingui/compare/v5.5.1...v5.5.2) (2025-10-30)
7+
8+
**Note:** Version bump only for package @lingui/babel-plugin-extract-messages
9+
610
## [5.5.1](https://github.com/lingui/js-lingui/compare/v5.5.0...v5.5.1) (2025-10-10)
711

812
**Note:** Version bump only for package @lingui/babel-plugin-extract-messages

packages/babel-plugin-extract-messages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/babel-plugin-extract-messages",
3-
"version": "5.5.1",
3+
"version": "5.5.2",
44
"description": "Babel plugin for collecting messages from source code for internationalization",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",

packages/babel-plugin-lingui-macro/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.5.2](https://github.com/lingui/js-lingui/compare/v5.5.1...v5.5.2) (2025-10-30)
7+
8+
### Bug Fixes
9+
10+
* **macro:** correctly update bindings after transformation ([#2356](https://github.com/lingui/js-lingui/issues/2356)) ([a9fdf3f](https://github.com/lingui/js-lingui/commit/a9fdf3f0ce69314ab8eaae6668d8c6daa48b3f2a))
11+
612
## [5.5.1](https://github.com/lingui/js-lingui/compare/v5.5.0...v5.5.1) (2025-10-10)
713

814
**Note:** Version bump only for package @lingui/babel-plugin-lingui-macro

packages/babel-plugin-lingui-macro/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/babel-plugin-lingui-macro",
3-
"version": "5.5.1",
3+
"version": "5.5.2",
44
"description": "Babel plugin for transforming Lingui Macros",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -86,9 +86,9 @@
8686
"@babel/core": "^7.20.12",
8787
"@babel/runtime": "^7.20.13",
8888
"@babel/types": "^7.20.7",
89-
"@lingui/conf": "5.5.1",
90-
"@lingui/core": "5.5.1",
91-
"@lingui/message-utils": "5.5.1"
89+
"@lingui/conf": "5.5.2",
90+
"@lingui/core": "5.5.2",
91+
"@lingui/message-utils": "5.5.2"
9292
},
9393
"peerDependencies": {
9494
"babel-plugin-macros": "2 || 3"

packages/cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.5.2](https://github.com/lingui/js-lingui/compare/v5.5.1...v5.5.2) (2025-10-30)
7+
8+
### Bug Fixes
9+
10+
* **cli:** process hang when error happend in extract ([#2349](https://github.com/lingui/js-lingui/issues/2349)) ([09ab46d](https://github.com/lingui/js-lingui/commit/09ab46d4097744975d4e76b3d713de7ce1ba30fc))
11+
612
## [5.5.1](https://github.com/lingui/js-lingui/compare/v5.5.0...v5.5.1) (2025-10-10)
713

814
### Bug Fixes

packages/cli/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/cli",
3-
"version": "5.5.1",
3+
"version": "5.5.2",
44
"description": "CLI for working wit message catalogs",
55
"keywords": [
66
"cli",
@@ -62,12 +62,12 @@
6262
"@babel/parser": "^7.22.0",
6363
"@babel/runtime": "^7.21.0",
6464
"@babel/types": "^7.21.2",
65-
"@lingui/babel-plugin-extract-messages": "5.5.1",
66-
"@lingui/babel-plugin-lingui-macro": "5.5.1",
67-
"@lingui/conf": "5.5.1",
68-
"@lingui/core": "5.5.1",
69-
"@lingui/format-po": "5.5.1",
70-
"@lingui/message-utils": "5.5.1",
65+
"@lingui/babel-plugin-extract-messages": "5.5.2",
66+
"@lingui/babel-plugin-lingui-macro": "5.5.2",
67+
"@lingui/conf": "5.5.2",
68+
"@lingui/core": "5.5.2",
69+
"@lingui/format-po": "5.5.2",
70+
"@lingui/message-utils": "5.5.2",
7171
"chokidar": "3.5.1",
7272
"cli-table": "^0.3.11",
7373
"commander": "^10.0.0",

packages/conf/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.5.2](https://github.com/lingui/js-lingui/compare/v5.5.1...v5.5.2) (2025-10-30)
7+
8+
**Note:** Version bump only for package @lingui/conf
9+
610
## [5.5.1](https://github.com/lingui/js-lingui/compare/v5.5.0...v5.5.1) (2025-10-10)
711

812
**Note:** Version bump only for package @lingui/conf

packages/conf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/conf",
3-
"version": "5.5.1",
3+
"version": "5.5.2",
44
"sideEffects": false,
55
"description": "Get lingui configuration from package.json",
66
"keywords": [

0 commit comments

Comments
 (0)