Skip to content

Commit 26700f0

Browse files
chore(release): published v5.5.0 [skip ci] (#2325)
1 parent 86fbcd8 commit 26700f0

File tree

37 files changed

+177
-95
lines changed

37 files changed

+177
-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.0](https://github.com/lingui/js-lingui/compare/v5.4.1...v5.5.0) (2025-09-12)
7+
8+
### Features
9+
10+
* add babel parser flag for import defer * as q from '...' ([#2309](https://github.com/lingui/js-lingui/issues/2309)) ([a09c973](https://github.com/lingui/js-lingui/commit/a09c973c914e3a1ab406ea6630691feef5b0c0f9))
11+
* **cli:** support multithreading in all cli commands ([#2320](https://github.com/lingui/js-lingui/issues/2320)) ([86fbcd8](https://github.com/lingui/js-lingui/commit/86fbcd849b82d500f67fabd7c4f6abef7e5914f2))
12+
613
## [5.4.1](https://github.com/lingui/js-lingui/compare/v5.4.0...v5.4.1) (2025-08-11)
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.4.1",
2+
"version": "5.5.0",
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.0](https://github.com/lingui/js-lingui/compare/v5.4.1...v5.5.0) (2025-09-12)
7+
8+
**Note:** Version bump only for package @lingui/babel-plugin-extract-messages
9+
610
## [5.4.1](https://github.com/lingui/js-lingui/compare/v5.4.0...v5.4.1) (2025-08-11)
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.4.1",
3+
"version": "5.5.0",
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: 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.0](https://github.com/lingui/js-lingui/compare/v5.4.1...v5.5.0) (2025-09-12)
7+
8+
**Note:** Version bump only for package @lingui/babel-plugin-lingui-macro
9+
610
## [5.4.1](https://github.com/lingui/js-lingui/compare/v5.4.0...v5.4.1) (2025-08-11)
711

812
**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.4.1",
3+
"version": "5.5.0",
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.4.1",
90-
"@lingui/core": "5.4.1",
91-
"@lingui/message-utils": "5.4.1"
89+
"@lingui/conf": "5.5.0",
90+
"@lingui/core": "5.5.0",
91+
"@lingui/message-utils": "5.5.0"
9292
},
9393
"peerDependencies": {
9494
"babel-plugin-macros": "2 || 3"

packages/cli/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.0](https://github.com/lingui/js-lingui/compare/v5.4.1...v5.5.0) (2025-09-12)
7+
8+
### Features
9+
10+
* add babel parser flag for import defer * as q from '...' ([#2309](https://github.com/lingui/js-lingui/issues/2309)) ([a09c973](https://github.com/lingui/js-lingui/commit/a09c973c914e3a1ab406ea6630691feef5b0c0f9))
11+
* **cli:** support multithreading in all cli commands ([#2320](https://github.com/lingui/js-lingui/issues/2320)) ([86fbcd8](https://github.com/lingui/js-lingui/commit/86fbcd849b82d500f67fabd7c4f6abef7e5914f2))
12+
613
## [5.4.1](https://github.com/lingui/js-lingui/compare/v5.4.0...v5.4.1) (2025-08-11)
714

815
### 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.4.1",
3+
"version": "5.5.0",
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.4.1",
66-
"@lingui/babel-plugin-lingui-macro": "5.4.1",
67-
"@lingui/conf": "5.4.1",
68-
"@lingui/core": "5.4.1",
69-
"@lingui/format-po": "5.4.1",
70-
"@lingui/message-utils": "5.4.1",
65+
"@lingui/babel-plugin-extract-messages": "5.5.0",
66+
"@lingui/babel-plugin-lingui-macro": "5.5.0",
67+
"@lingui/conf": "5.5.0",
68+
"@lingui/core": "5.5.0",
69+
"@lingui/format-po": "5.5.0",
70+
"@lingui/message-utils": "5.5.0",
7171
"chokidar": "3.5.1",
7272
"cli-table": "^0.3.11",
7373
"commander": "^10.0.0",

packages/conf/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.0](https://github.com/lingui/js-lingui/compare/v5.4.1...v5.5.0) (2025-09-12)
7+
8+
### Features
9+
10+
* **cli:** support multithreading in all cli commands ([#2320](https://github.com/lingui/js-lingui/issues/2320)) ([86fbcd8](https://github.com/lingui/js-lingui/commit/86fbcd849b82d500f67fabd7c4f6abef7e5914f2))
11+
612
## [5.4.1](https://github.com/lingui/js-lingui/compare/v5.4.0...v5.4.1) (2025-08-11)
713

814
**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.4.1",
3+
"version": "5.5.0",
44
"sideEffects": false,
55
"description": "Get lingui configuration from package.json",
66
"keywords": [

0 commit comments

Comments
 (0)