From 7c0a52f462a0b769038306ceec76a7a84ae5ca5d Mon Sep 17 00:00:00 2001 From: Lingui Bot Date: Thu, 8 Apr 2021 09:36:38 +0000 Subject: [PATCH] chore(release): published v3.8.4 [skip ci] --- CHANGELOG.md | 13 +++++++++++++ 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 | 11 +++++++++++ packages/conf/package.json | 2 +- packages/core/CHANGELOG.md | 11 +++++++++++ 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 ++-- packages/snowpack-plugin/CHANGELOG.md | 8 ++++++++ packages/snowpack-plugin/package.json | 6 +++--- 20 files changed, 113 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 960a6e79c..08646ecc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + + +### Bug Fixes + +* respect unicode chars in t macro ([#1032](https://github.com/lingui/js-lingui/issues/1032)) ([7597621](https://github.com/lingui/js-lingui/commit/7597621827f66e81a4e1fdf6ec64c986c9c88c7d)) +* typescript loader config ([#1029](https://github.com/lingui/js-lingui/issues/1029)) ([93afb72](https://github.com/lingui/js-lingui/commit/93afb72c1d6235df1516655d5ab4eea0eeb606ee)) +* undefined interpolation on t macro ([#1030](https://github.com/lingui/js-lingui/issues/1030)) ([194f9b3](https://github.com/lingui/js-lingui/commit/194f9b318434bcaf4b68af549a6ed246fed2be02)) + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) diff --git a/lerna.json b/lerna.json index be20d594b..d4aa31ca8 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.8.3", + "version": "3.8.4", "packages": [ "packages/*" ], diff --git a/packages/babel-plugin-extract-messages/CHANGELOG.md b/packages/babel-plugin-extract-messages/CHANGELOG.md index e2b9ceb90..170eac19f 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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + +**Note:** Version bump only for package @lingui/babel-plugin-extract-messages + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) diff --git a/packages/babel-plugin-extract-messages/package.json b/packages/babel-plugin-extract-messages/package.json index e13b3edd6..1480d50bd 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.8.3", + "version": "3.8.4", "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.8.3", + "@lingui/conf": "^3.8.4", "mkdirp": "^1.0.4" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9c6a982d7..e67e6b0bc 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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + +**Note:** Version bump only for package @lingui/cli + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 83426ea5c..2cf3a8bfe 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.8.3", + "version": "3.8.4", "description": "CLI for working wit message catalogs", "keywords": [ "cli", @@ -38,8 +38,8 @@ "@babel/plugin-syntax-jsx": "^7.10.4", "@babel/runtime": "^7.11.2", "@babel/types": "^7.11.5", - "@lingui/babel-plugin-extract-messages": "^3.8.3", - "@lingui/conf": "^3.8.3", + "@lingui/babel-plugin-extract-messages": "^3.8.4", + "@lingui/conf": "^3.8.4", "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 9c70f3538..225058dff 100644 --- a/packages/conf/CHANGELOG.md +++ b/packages/conf/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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + + +### Bug Fixes + +* typescript loader config ([#1029](https://github.com/lingui/js-lingui/issues/1029)) ([93afb72](https://github.com/lingui/js-lingui/commit/93afb72c1d6235df1516655d5ab4eea0eeb606ee)) + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/conf diff --git a/packages/conf/package.json b/packages/conf/package.json index 1d0e8d44d..b063c34fb 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.8.3", + "version": "3.8.4", "description": "Get lingui configuration from package.json", "keywords": [ "lingui", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 0dbfd0550..7c692143d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + + +### Bug Fixes + +* undefined interpolation on t macro ([#1030](https://github.com/lingui/js-lingui/issues/1030)) ([194f9b3](https://github.com/lingui/js-lingui/commit/194f9b318434bcaf4b68af549a6ed246fed2be02)) + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/core diff --git a/packages/core/package.json b/packages/core/package.json index 1dc6d8901..cc6c01099 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.8.3", + "version": "3.8.4", "description": "I18n tools for javascript", "main": "index.js", "module": "esm/index.js", diff --git a/packages/detect-locale/CHANGELOG.md b/packages/detect-locale/CHANGELOG.md index 7e1e68da5..52f2c0f56 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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/detect-locale diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index 144d3e4fd..8ab18f0f8 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.8.3", + "version": "3.8.4", "description": "@Lingui package to help you find the correct browser/server locale", "main": "index.js", "module": "esm/index.js", diff --git a/packages/loader/CHANGELOG.md b/packages/loader/CHANGELOG.md index 03517f9d5..26bef60e9 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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + +**Note:** Version bump only for package @lingui/loader + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/loader diff --git a/packages/loader/package.json b/packages/loader/package.json index 809f157d8..36874daf8 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.8.3", + "version": "3.8.4", "description": "webpack loader for lingui message catalogs", "main": "index.js", "author": { @@ -30,8 +30,8 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/cli": "^3.8.3", - "@lingui/conf": "^3.8.3", + "@lingui/cli": "^3.8.4", + "@lingui/conf": "^3.8.4", "loader-utils": "^2.0.0", "ramda": "^0.27.1" }, diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index c128f0b68..73122205a 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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + + +### Bug Fixes + +* respect unicode chars in t macro ([#1032](https://github.com/lingui/js-lingui/issues/1032)) ([7597621](https://github.com/lingui/js-lingui/commit/7597621827f66e81a4e1fdf6ec64c986c9c88c7d)) + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) diff --git a/packages/macro/package.json b/packages/macro/package.json index 729915574..36a04c3d4 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.8.3", + "version": "3.8.4", "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.8.3", + "@lingui/conf": "^3.8.4", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index bc7ff9516..742202bce 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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + +**Note:** Version bump only for package @lingui/react + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/react diff --git a/packages/react/package.json b/packages/react/package.json index 1a7eb8f65..5ed4c9f8e 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.8.3", + "version": "3.8.4", "description": "React components for translations", "main": "index.js", "module": "esm/index.js", @@ -42,7 +42,7 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/core": "^3.8.3" + "@lingui/core": "^3.8.4" }, "devDependencies": { "react-testing-library": "^8.0.1" diff --git a/packages/snowpack-plugin/CHANGELOG.md b/packages/snowpack-plugin/CHANGELOG.md index 0be5718b8..2dfe13ce7 100644 --- a/packages/snowpack-plugin/CHANGELOG.md +++ b/packages/snowpack-plugin/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.8.4](https://github.com/lingui/js-lingui/compare/v3.8.3...v3.8.4) (2021-04-08) + +**Note:** Version bump only for package @lingui/snowpack-plugin + + + + + ## [3.8.3](https://github.com/lingui/js-lingui/compare/v3.8.2...v3.8.3) (2021-04-05) **Note:** Version bump only for package @lingui/snowpack-plugin diff --git a/packages/snowpack-plugin/package.json b/packages/snowpack-plugin/package.json index 5724587d4..f04347700 100644 --- a/packages/snowpack-plugin/package.json +++ b/packages/snowpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/snowpack-plugin", - "version": "3.8.3", + "version": "3.8.4", "description": "Snowpack plugin for Lingui message catalogs", "main": "index.js", "license": "MIT", @@ -27,7 +27,7 @@ }, "dependencies": { "@babel/runtime": "^7", - "@lingui/cli": "^3.8.3", - "@lingui/conf": "^3.8.3" + "@lingui/cli": "^3.8.4", + "@lingui/conf": "^3.8.4" } }