Skip to content

Commit f8dc4af

Browse files
chore(release): published v5.3.3 [skip ci] (#2281)
1 parent 36513df commit f8dc4af

File tree

37 files changed

+207
-95
lines changed

37 files changed

+207
-95
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.3.3](https://github.com/lingui/js-lingui/compare/v5.3.2...v5.3.3) (2025-07-11)
7+
8+
### Bug Fixes
9+
10+
* **cli:** remove unused dependency babel-plugin-macros ([#2266](https://github.com/lingui/js-lingui/issues/2266)) ([d6906cc](https://github.com/lingui/js-lingui/commit/d6906cca6bef5e36f91c9b1be8a2764453e68f19))
11+
* remove unraw dependency ([#2271](https://github.com/lingui/js-lingui/issues/2271)) ([494c152](https://github.com/lingui/js-lingui/commit/494c152d89754a1b5359a5420fcc407aac4ed7f5))
12+
* standardize repository field format across all packages ([#2269](https://github.com/lingui/js-lingui/issues/2269)) ([a03a984](https://github.com/lingui/js-lingui/commit/a03a984cdc027ece9902277243f671ca15912adc))
13+
614
## [5.3.2](https://github.com/lingui/js-lingui/compare/v5.3.1...v5.3.2) (2025-05-27)
715

816
### 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.3.2",
2+
"version": "5.3.3",
33
"packages": ["packages/*"],
44
"npmClient": "yarn",
55
"command": {

packages/babel-plugin-extract-messages/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.3.3](https://github.com/lingui/js-lingui/compare/v5.3.2...v5.3.3) (2025-07-11)
7+
8+
### Bug Fixes
9+
10+
* standardize repository field format across all packages ([#2269](https://github.com/lingui/js-lingui/issues/2269)) ([a03a984](https://github.com/lingui/js-lingui/commit/a03a984cdc027ece9902277243f671ca15912adc))
11+
612
## [5.3.2](https://github.com/lingui/js-lingui/compare/v5.3.1...v5.3.2) (2025-05-27)
713

814
**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.3.2",
3+
"version": "5.3.3",
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.3.3](https://github.com/lingui/js-lingui/compare/v5.3.2...v5.3.3) (2025-07-11)
7+
8+
### Bug Fixes
9+
10+
* standardize repository field format across all packages ([#2269](https://github.com/lingui/js-lingui/issues/2269)) ([a03a984](https://github.com/lingui/js-lingui/commit/a03a984cdc027ece9902277243f671ca15912adc))
11+
612
## [5.3.2](https://github.com/lingui/js-lingui/compare/v5.3.1...v5.3.2) (2025-05-27)
713

814

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.3.2",
3+
"version": "5.3.3",
44
"description": "Babel plugin for transforming Lingui Macros",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -85,9 +85,9 @@
8585
"@babel/core": "^7.20.12",
8686
"@babel/runtime": "^7.20.13",
8787
"@babel/types": "^7.20.7",
88-
"@lingui/conf": "5.3.2",
89-
"@lingui/core": "5.3.2",
90-
"@lingui/message-utils": "5.3.2"
88+
"@lingui/conf": "5.3.3",
89+
"@lingui/core": "5.3.3",
90+
"@lingui/message-utils": "5.3.3"
9191
},
9292
"peerDependencies": {
9393
"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.3.3](https://github.com/lingui/js-lingui/compare/v5.3.2...v5.3.3) (2025-07-11)
7+
8+
### Bug Fixes
9+
10+
* **cli:** remove unused dependency babel-plugin-macros ([#2266](https://github.com/lingui/js-lingui/issues/2266)) ([d6906cc](https://github.com/lingui/js-lingui/commit/d6906cca6bef5e36f91c9b1be8a2764453e68f19))
11+
* standardize repository field format across all packages ([#2269](https://github.com/lingui/js-lingui/issues/2269)) ([a03a984](https://github.com/lingui/js-lingui/commit/a03a984cdc027ece9902277243f671ca15912adc))
12+
613
## [5.3.2](https://github.com/lingui/js-lingui/compare/v5.3.1...v5.3.2) (2025-05-27)
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.3.2",
3+
"version": "5.3.3",
44
"description": "CLI for working wit message catalogs",
55
"keywords": [
66
"cli",
@@ -61,12 +61,12 @@
6161
"@babel/parser": "^7.22.0",
6262
"@babel/runtime": "^7.21.0",
6363
"@babel/types": "^7.21.2",
64-
"@lingui/babel-plugin-extract-messages": "5.3.2",
65-
"@lingui/babel-plugin-lingui-macro": "5.3.2",
66-
"@lingui/conf": "5.3.2",
67-
"@lingui/core": "5.3.2",
68-
"@lingui/format-po": "5.3.2",
69-
"@lingui/message-utils": "5.3.2",
64+
"@lingui/babel-plugin-extract-messages": "5.3.3",
65+
"@lingui/babel-plugin-lingui-macro": "5.3.3",
66+
"@lingui/conf": "5.3.3",
67+
"@lingui/core": "5.3.3",
68+
"@lingui/format-po": "5.3.3",
69+
"@lingui/message-utils": "5.3.3",
7070
"chokidar": "3.5.1",
7171
"cli-table": "^0.3.11",
7272
"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.3.3](https://github.com/lingui/js-lingui/compare/v5.3.2...v5.3.3) (2025-07-11)
7+
8+
### Bug Fixes
9+
10+
* standardize repository field format across all packages ([#2269](https://github.com/lingui/js-lingui/issues/2269)) ([a03a984](https://github.com/lingui/js-lingui/commit/a03a984cdc027ece9902277243f671ca15912adc))
11+
612
## [5.3.2](https://github.com/lingui/js-lingui/compare/v5.3.1...v5.3.2) (2025-05-27)
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.3.2",
3+
"version": "5.3.3",
44
"sideEffects": false,
55
"description": "Get lingui configuration from package.json",
66
"keywords": [

0 commit comments

Comments
 (0)