From 5c5c8a7af806f6b976448ce75ec111a55e7376c8 Mon Sep 17 00:00:00 2001 From: Lingui Bot Date: Tue, 28 Sep 2021 21:48:33 +0000 Subject: [PATCH] chore(release): published v3.12.1 [skip ci] --- CHANGELOG.md | 11 +++++++++++ lerna.json | 2 +- packages/babel-plugin-extract-messages/CHANGELOG.md | 8 ++++++++ packages/babel-plugin-extract-messages/package.json | 4 ++-- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 6 +++--- packages/conf/CHANGELOG.md | 8 ++++++++ packages/conf/package.json | 2 +- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 2 +- packages/detect-locale/CHANGELOG.md | 8 ++++++++ packages/detect-locale/package.json | 2 +- packages/loader/CHANGELOG.md | 8 ++++++++ packages/loader/package.json | 6 +++--- packages/macro/CHANGELOG.md | 11 +++++++++++ packages/macro/package.json | 4 ++-- packages/react/CHANGELOG.md | 8 ++++++++ packages/react/package.json | 4 ++-- 18 files changed, 94 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 334e09802..0e320b4bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + + +### Bug Fixes + +* **types:** correct types for macro with custom i18n instance ([#1141](https://github.com/lingui/js-lingui/issues/1141)) ([a9bffdd](https://github.com/lingui/js-lingui/commit/a9bffddf2ae0c9b6ab6a48552d085cfd53140cca)) + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) diff --git a/lerna.json b/lerna.json index 44f2e74ac..284f905f6 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.12.0", + "version": "3.12.1", "packages": [ "packages/*" ], diff --git a/packages/babel-plugin-extract-messages/CHANGELOG.md b/packages/babel-plugin-extract-messages/CHANGELOG.md index 03b047461..ee8317488 100644 --- a/packages/babel-plugin-extract-messages/CHANGELOG.md +++ b/packages/babel-plugin-extract-messages/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/babel-plugin-extract-messages + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) diff --git a/packages/babel-plugin-extract-messages/package.json b/packages/babel-plugin-extract-messages/package.json index 547a94d37..993d631b5 100644 --- a/packages/babel-plugin-extract-messages/package.json +++ b/packages/babel-plugin-extract-messages/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/babel-plugin-extract-messages", - "version": "3.12.0", + "version": "3.12.1", "description": "Babel plugin for collecting messages from source code for internationalization", "main": "index.js", "author": { @@ -30,7 +30,7 @@ "dependencies": { "@babel/generator": "^7.11.6", "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.12.0", + "@lingui/conf": "^3.12.1", "mkdirp": "^1.0.4" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 2b0343375..18e1a6f91 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/cli + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) diff --git a/packages/cli/package.json b/packages/cli/package.json index b2a9c894b..1c077e7cc 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.12.0", + "version": "3.12.1", "description": "CLI for working wit message catalogs", "keywords": [ "cli", @@ -39,8 +39,8 @@ "@babel/plugin-syntax-jsx": "^7.10.4", "@babel/runtime": "^7.11.2", "@babel/types": "^7.11.5", - "@lingui/babel-plugin-extract-messages": "^3.12.0", - "@lingui/conf": "^3.12.0", + "@lingui/babel-plugin-extract-messages": "^3.12.1", + "@lingui/conf": "^3.12.1", "babel-plugin-macros": "^3.0.1", "bcp-47": "^1.0.7", "chalk": "^4.1.0", diff --git a/packages/conf/CHANGELOG.md b/packages/conf/CHANGELOG.md index fb886d0da..379a67b54 100644 --- a/packages/conf/CHANGELOG.md +++ b/packages/conf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/conf + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) diff --git a/packages/conf/package.json b/packages/conf/package.json index be947d324..efe9da566 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.12.0", + "version": "3.12.1", "sideEffects": false, "description": "Get lingui configuration from package.json", "keywords": [ diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 42899c4d2..6c1309819 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/core + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) **Note:** Version bump only for package @lingui/core diff --git a/packages/core/package.json b/packages/core/package.json index 0e277f81e..185aa146e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.12.0", + "version": "3.12.1", "sideEffects": false, "description": "I18n tools for javascript", "main": "index.js", diff --git a/packages/detect-locale/CHANGELOG.md b/packages/detect-locale/CHANGELOG.md index 97cc456b4..392e9d316 100644 --- a/packages/detect-locale/CHANGELOG.md +++ b/packages/detect-locale/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) **Note:** Version bump only for package @lingui/detect-locale diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index 6a382858c..ec2ed4c81 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.12.0", + "version": "3.12.1", "sideEffects": false, "description": "@Lingui package to help you find the correct browser/server locale", "main": "index.js", diff --git a/packages/loader/CHANGELOG.md b/packages/loader/CHANGELOG.md index b257cd2de..bb30dc8b5 100644 --- a/packages/loader/CHANGELOG.md +++ b/packages/loader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/loader + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) **Note:** Version bump only for package @lingui/loader diff --git a/packages/loader/package.json b/packages/loader/package.json index 4492b3111..37f88fdbb 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.12.0", + "version": "3.12.1", "description": "webpack loader for lingui message catalogs", "types": "index.d.ts", "main": "index.js", @@ -31,8 +31,8 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/cli": "^3.12.0", - "@lingui/conf": "^3.12.0", + "@lingui/cli": "^3.12.1", + "@lingui/conf": "^3.12.1", "loader-utils": "^2.0.0", "ramda": "^0.27.1" }, diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index 817e62fd5..67be9a4b2 100644 --- a/packages/macro/CHANGELOG.md +++ b/packages/macro/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + + +### Bug Fixes + +* **types:** correct types for macro with custom i18n instance ([#1141](https://github.com/lingui/js-lingui/issues/1141)) ([a9bffdd](https://github.com/lingui/js-lingui/commit/a9bffddf2ae0c9b6ab6a48552d085cfd53140cca)) + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) diff --git a/packages/macro/package.json b/packages/macro/package.json index 0801d596d..43af78d2b 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.12.0", + "version": "3.12.1", "description": "Macro for generating messages in ICU MessageFormat syntax", "main": "index.js", "author": { @@ -30,7 +30,7 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.12.0", + "@lingui/conf": "^3.12.1", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index d2d4645f6..de0a8bb22 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.12.1](https://github.com/lingui/js-lingui/compare/v3.12.0...v3.12.1) (2021-09-28) + +**Note:** Version bump only for package @lingui/react + + + + + # [3.12.0](https://github.com/lingui/js-lingui/compare/v3.11.1...v3.12.0) (2021-09-28) **Note:** Version bump only for package @lingui/react diff --git a/packages/react/package.json b/packages/react/package.json index d4a2e2a8d..03d9393f4 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.12.0", + "version": "3.12.1", "sideEffects": false, "description": "React components for translations", "main": "index.js", @@ -43,7 +43,7 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/core": "^3.12.0" + "@lingui/core": "^3.12.1" }, "devDependencies": { "react-testing-library": "^8.0.1"