From 30a4ba94bab550ee98932a262bf137cac7a08498 Mon Sep 17 00:00:00 2001 From: Lingui Date: Tue, 9 Feb 2021 08:11:21 +0000 Subject: [PATCH] chore(release): published v3.5.1 [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 | 8 ++++++++ packages/core/package.json | 2 +- packages/detect-locale/CHANGELOG.md | 8 ++++++++ packages/detect-locale/package.json | 2 +- packages/loader/CHANGELOG.md | 11 +++++++++++ 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 8e96ea212..371afa515 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + + +### Bug Fixes + +* @lingui/macro types for global environments ([#973](https://github.com/lingui/js-lingui/issues/973)) ([92a5ce7](https://github.com/lingui/js-lingui/commit/92a5ce786d979d4bd0f65a50962fdb3bd27d91d7)) +* runtimeConfigModule config validation ([#972](https://github.com/lingui/js-lingui/issues/972)) ([5656c95](https://github.com/lingui/js-lingui/commit/5656c95b8b2ecfdfe903a941918c60abe16e1691)) +* **@lingui/loader:** accept webpack 5.x as a peer dependency ([#971](https://github.com/lingui/js-lingui/issues/971)) ([b9683cc](https://github.com/lingui/js-lingui/commit/b9683cc3f1274efab805d6143398d78fbb3310c5)) + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) diff --git a/lerna.json b/lerna.json index 4b06ff1be..0e23dd9d2 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.5.0", + "version": "3.5.1", "packages": [ "packages/*" ], diff --git a/packages/babel-plugin-extract-messages/CHANGELOG.md b/packages/babel-plugin-extract-messages/CHANGELOG.md index 51416716c..148fe445d 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + +**Note:** Version bump only for package @lingui/babel-plugin-extract-messages + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) **Note:** Version bump only for package @lingui/babel-plugin-extract-messages diff --git a/packages/babel-plugin-extract-messages/package.json b/packages/babel-plugin-extract-messages/package.json index ac96a6f1f..e794cf58b 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.5.0", + "version": "3.5.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.5.0", + "@lingui/conf": "^3.5.1", "mkdirp": "^1.0.4" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 97a3aaca3..466a72bc5 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + +**Note:** Version bump only for package @lingui/cli + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) diff --git a/packages/cli/package.json b/packages/cli/package.json index 3b4429dc5..82b29b6cd 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.5.0", + "version": "3.5.1", "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.5.0", - "@lingui/conf": "^3.5.0", + "@lingui/babel-plugin-extract-messages": "^3.5.1", + "@lingui/conf": "^3.5.1", "babel-plugin-macros": "^2.8.0", "bcp-47": "^1.0.7", "chalk": "^4.1.0", diff --git a/packages/conf/CHANGELOG.md b/packages/conf/CHANGELOG.md index 7a4d81862..4ed7801a9 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + + +### Bug Fixes + +* runtimeConfigModule config validation ([#972](https://github.com/lingui/js-lingui/issues/972)) ([5656c95](https://github.com/lingui/js-lingui/commit/5656c95b8b2ecfdfe903a941918c60abe16e1691)) + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) diff --git a/packages/conf/package.json b/packages/conf/package.json index 8a0e58d92..ab198e7dc 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.5.0", + "version": "3.5.1", "description": "Get lingui configuration from package.json", "keywords": [ "lingui", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index c020b6ab5..3c008d063 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + +**Note:** Version bump only for package @lingui/core + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) **Note:** Version bump only for package @lingui/core diff --git a/packages/core/package.json b/packages/core/package.json index 395926231..ec177357a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.5.0", + "version": "3.5.1", "description": "I18n tools for javascript", "main": "index.js", "types": "cjs/index.d.ts", diff --git a/packages/detect-locale/CHANGELOG.md b/packages/detect-locale/CHANGELOG.md index dfe5520db..d70c94b19 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) **Note:** Version bump only for package @lingui/detect-locale diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index 98fe3f10a..98531f99a 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.5.0", + "version": "3.5.1", "description": "@Lingui package to help you find the correct browser/server locale", "main": "index.js", "types": "cjs/index.d.ts", diff --git a/packages/loader/CHANGELOG.md b/packages/loader/CHANGELOG.md index a10feac93..6ced557cc 100644 --- a/packages/loader/CHANGELOG.md +++ b/packages/loader/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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + + +### Bug Fixes + +* **@lingui/loader:** accept webpack 5.x as a peer dependency ([#971](https://github.com/lingui/js-lingui/issues/971)) ([b9683cc](https://github.com/lingui/js-lingui/commit/b9683cc3f1274efab805d6143398d78fbb3310c5)) + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) **Note:** Version bump only for package @lingui/loader diff --git a/packages/loader/package.json b/packages/loader/package.json index 26250fc4b..e409a4050 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.5.0", + "version": "3.5.1", "description": "webpack loader for lingui message catalogs", "main": "index.js", "author": { @@ -30,8 +30,8 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/cli": "^3.5.0", - "@lingui/conf": "^3.5.0", + "@lingui/cli": "^3.5.1", + "@lingui/conf": "^3.5.1", "loader-utils": "^2.0.0", "ramda": "^0.27.1" }, diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index d817f01ad..5a770f04a 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + + +### Bug Fixes + +* @lingui/macro types for global environments ([#973](https://github.com/lingui/js-lingui/issues/973)) ([92a5ce7](https://github.com/lingui/js-lingui/commit/92a5ce786d979d4bd0f65a50962fdb3bd27d91d7)) + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) diff --git a/packages/macro/package.json b/packages/macro/package.json index 2562849bb..81bc51655 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.5.0", + "version": "3.5.1", "description": "Macro for generating messages in ICU MessageFormat syntax", "main": "index.ts", "author": { @@ -30,7 +30,7 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.5.0", + "@lingui/conf": "^3.5.1", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 44a2a956c..31d8d1fad 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + +**Note:** Version bump only for package @lingui/react + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) diff --git a/packages/react/package.json b/packages/react/package.json index 37ad5ef25..2712634c8 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.5.0", + "version": "3.5.1", "description": "React components for translations", "main": "index.js", "types": "cjs/index.d.ts", @@ -40,7 +40,7 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/core": "^3.5.0" + "@lingui/core": "^3.5.1" }, "devDependencies": { "react-testing-library": "^8.0.1" diff --git a/packages/snowpack-plugin/CHANGELOG.md b/packages/snowpack-plugin/CHANGELOG.md index cc811702e..bf123f66e 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.5.1](https://github.com/lingui/js-lingui/compare/v3.5.0...v3.5.1) (2021-02-09) + +**Note:** Version bump only for package @lingui/snowpack-plugin + + + + + # [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) diff --git a/packages/snowpack-plugin/package.json b/packages/snowpack-plugin/package.json index ca2daa60a..260cbd8e1 100644 --- a/packages/snowpack-plugin/package.json +++ b/packages/snowpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/snowpack-plugin", - "version": "3.5.0", + "version": "3.5.1", "description": "Snowpack plugin for Lingui message catalogs", "main": "index.js", "license": "MIT", @@ -27,7 +27,7 @@ }, "dependencies": { "@babel/runtime": "^7", - "@lingui/cli": "^3.5.0", - "@lingui/conf": "^3.5.0" + "@lingui/cli": "^3.5.1", + "@lingui/conf": "^3.5.1" } }