diff --git a/CHANGELOG.md b/CHANGELOG.md index 29542c885..50d9a3ecf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + + +### Bug Fixes + +* @lingui/cli type error when catalog is missing ([#988](https://github.com/lingui/js-lingui/issues/988)) ([8c44af2](https://github.com/lingui/js-lingui/commit/8c44af2442f979ae60de8059e68436508cdc8f74)) +* macro components should omit key prop [#994](https://github.com/lingui/js-lingui/issues/994) ([f2a4da0](https://github.com/lingui/js-lingui/commit/f2a4da08542567b77fc2ae8ebf9385f6d8055f6f)) +* Report correct number of missing messages in strict mode ([#992](https://github.com/lingui/js-lingui/issues/992)) ([128f3e2](https://github.com/lingui/js-lingui/commit/128f3e237daef838e18e73818fc681609e4bc131)) +* use pkgUp.sync to localize package.json ([#985](https://github.com/lingui/js-lingui/issues/985)) ([18d985d](https://github.com/lingui/js-lingui/commit/18d985dd414276d07a1f7ffc7e21ffa5e0dadc36)) + + +### Features + +* raise event on missing translation ([#993](https://github.com/lingui/js-lingui/issues/993)) ([ecf83c3](https://github.com/lingui/js-lingui/commit/ecf83c37e177cb10f157fb8913d73e18662e3ca4)) + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) diff --git a/lerna.json b/lerna.json index 02c812442..6c8da1d03 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.6.0", + "version": "3.7.0", "packages": [ "packages/*" ], diff --git a/packages/babel-plugin-extract-messages/CHANGELOG.md b/packages/babel-plugin-extract-messages/CHANGELOG.md index 2752909d1..d30968bfe 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + +**Note:** Version bump only for package @lingui/babel-plugin-extract-messages + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) **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 84f1f7eca..c42ea0f9a 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.6.0", + "version": "3.7.0", "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.6.0", + "@lingui/conf": "^3.7.0", "mkdirp": "^1.0.4" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 61229dbef..2bb068a8d 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + + +### Bug Fixes + +* @lingui/cli type error when catalog is missing ([#988](https://github.com/lingui/js-lingui/issues/988)) ([8c44af2](https://github.com/lingui/js-lingui/commit/8c44af2442f979ae60de8059e68436508cdc8f74)) +* Report correct number of missing messages in strict mode ([#992](https://github.com/lingui/js-lingui/issues/992)) ([128f3e2](https://github.com/lingui/js-lingui/commit/128f3e237daef838e18e73818fc681609e4bc131)) +* use pkgUp.sync to localize package.json ([#985](https://github.com/lingui/js-lingui/issues/985)) ([18d985d](https://github.com/lingui/js-lingui/commit/18d985dd414276d07a1f7ffc7e21ffa5e0dadc36)) + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) diff --git a/packages/cli/package.json b/packages/cli/package.json index 521d3d2fd..cb030233b 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.6.0", + "version": "3.7.0", "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.6.0", - "@lingui/conf": "^3.6.0", + "@lingui/babel-plugin-extract-messages": "^3.7.0", + "@lingui/conf": "^3.7.0", "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 670f9089a..876f591c0 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + +**Note:** Version bump only for package @lingui/conf + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) **Note:** Version bump only for package @lingui/conf diff --git a/packages/conf/package.json b/packages/conf/package.json index e528dbccc..83ecbaa8c 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.6.0", + "version": "3.7.0", "description": "Get lingui configuration from package.json", "keywords": [ "lingui", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 775df3bca..41774e4cb 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + + +### Features + +* raise event on missing translation ([#993](https://github.com/lingui/js-lingui/issues/993)) ([ecf83c3](https://github.com/lingui/js-lingui/commit/ecf83c37e177cb10f157fb8913d73e18662e3ca4)) + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) diff --git a/packages/core/package.json b/packages/core/package.json index 04da7de52..557429b42 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.6.0", + "version": "3.7.0", "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 8c791ec6d..e3df13f2f 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index f61550daa..e3dcac5d0 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.6.0", + "version": "3.7.0", "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 1344b194b..4d2fbce01 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + +**Note:** Version bump only for package @lingui/loader + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) **Note:** Version bump only for package @lingui/loader diff --git a/packages/loader/package.json b/packages/loader/package.json index 30ffe811a..9d774d6fc 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.6.0", + "version": "3.7.0", "description": "webpack loader for lingui message catalogs", "main": "index.js", "author": { @@ -30,8 +30,8 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/cli": "^3.6.0", - "@lingui/conf": "^3.6.0", + "@lingui/cli": "^3.7.0", + "@lingui/conf": "^3.7.0", "loader-utils": "^2.0.0", "ramda": "^0.27.1" }, diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index cc36b1a5d..ffa48a029 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + + +### Bug Fixes + +* macro components should omit key prop [#994](https://github.com/lingui/js-lingui/issues/994) ([f2a4da0](https://github.com/lingui/js-lingui/commit/f2a4da08542567b77fc2ae8ebf9385f6d8055f6f)) + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) **Note:** Version bump only for package @lingui/macro diff --git a/packages/macro/package.json b/packages/macro/package.json index 3a5bcb511..534d4c922 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.6.0", + "version": "3.7.0", "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.6.0", + "@lingui/conf": "^3.7.0", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index d749b9a3d..be4c83834 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + +**Note:** Version bump only for package @lingui/react + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) diff --git a/packages/react/package.json b/packages/react/package.json index 224f56f81..907b5a936 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.6.0", + "version": "3.7.0", "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.6.0" + "@lingui/core": "^3.7.0" }, "devDependencies": { "react-testing-library": "^8.0.1" diff --git a/packages/snowpack-plugin/CHANGELOG.md b/packages/snowpack-plugin/CHANGELOG.md index 4fbc85dd6..5c56fa6f8 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.7.0](https://github.com/lingui/js-lingui/compare/v3.6.0...v3.7.0) (2021-03-04) + +**Note:** Version bump only for package @lingui/snowpack-plugin + + + + + # [3.6.0](https://github.com/lingui/js-lingui/compare/v3.5.1...v3.6.0) (2021-02-23) **Note:** Version bump only for package @lingui/snowpack-plugin diff --git a/packages/snowpack-plugin/package.json b/packages/snowpack-plugin/package.json index 7413e105e..4f7b18491 100644 --- a/packages/snowpack-plugin/package.json +++ b/packages/snowpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/snowpack-plugin", - "version": "3.6.0", + "version": "3.7.0", "description": "Snowpack plugin for Lingui message catalogs", "main": "index.js", "license": "MIT", @@ -27,7 +27,7 @@ }, "dependencies": { "@babel/runtime": "^7", - "@lingui/cli": "^3.6.0", - "@lingui/conf": "^3.6.0" + "@lingui/cli": "^3.7.0", + "@lingui/conf": "^3.7.0" } }