diff --git a/CHANGELOG.md b/CHANGELOG.md index 107585240..fcb443df5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + + +### Bug Fixes + +* accept pseudolocalization in SelectOrdinal ([#903](https://github.com/lingui/js-lingui/issues/903)) ([d4c24bf](https://github.com/lingui/js-lingui/commit/d4c24bf6bbb1a6eeb651b1a70490b10f502a28c6)) +* formatters exceptions throw error ([#889](https://github.com/lingui/js-lingui/issues/889)) ([d6b774c](https://github.com/lingui/js-lingui/commit/d6b774cf53dd4bf691a228d3f05edaea2442b121)) +* macro underscore type ([#884](https://github.com/lingui/js-lingui/issues/884)) ([5cade19](https://github.com/lingui/js-lingui/commit/5cade1924dd038ba73ff85cdcf7ce80d31ddbd0f)) +* plural pseudolocalization with offset ([#887](https://github.com/lingui/js-lingui/issues/887)) ([3d54b4d](https://github.com/lingui/js-lingui/commit/3d54b4d9b10b731733a385306263de2da08100ec)) +* scaped literals double backslash formatting ([#898](https://github.com/lingui/js-lingui/issues/898)) ([fc8c628](https://github.com/lingui/js-lingui/commit/fc8c628e05522167c5ad76e2cb8c6161be95b8b4)) +* select prop types ([#890](https://github.com/lingui/js-lingui/issues/890)) ([672fb1f](https://github.com/lingui/js-lingui/commit/672fb1f5731fe0abeb2fa7ea0de78827e547873c)) + + +### Features + +* add support for runtimeConfigModule w/ Trans ([#895](https://github.com/lingui/js-lingui/issues/895)) ([23b06b5](https://github.com/lingui/js-lingui/commit/23b06b5dfbf0db306cdfab83801898caceb5a8b0)) +* config accepts compilerBabelOptions ([#906](https://github.com/lingui/js-lingui/issues/906)) ([38d01ef](https://github.com/lingui/js-lingui/commit/38d01ef13a7867460b68ab709f94a17176a21f25)) +* extract messages from specific files ([#881](https://github.com/lingui/js-lingui/issues/881)) ([82dea5f](https://github.com/lingui/js-lingui/commit/82dea5f35b55cbb039a48e49fc94dbfbbaca7df9)) +* Implement gettext plurals for PO files ([#677](https://github.com/lingui/js-lingui/issues/677)) ([415b90e](https://github.com/lingui/js-lingui/commit/415b90e0abfb24bb7170a5ba7630a4ead94898dd)) + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) diff --git a/lerna.json b/lerna.json index a09af9267..abf94a48f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.2.3", + "version": "3.3.0", "packages": [ "packages/*" ], diff --git a/packages/babel-plugin-extract-messages/CHANGELOG.md b/packages/babel-plugin-extract-messages/CHANGELOG.md index 9b7665686..c4207cabe 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.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + +**Note:** Version bump only for package @lingui/babel-plugin-extract-messages + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **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 bf9bd9dcd..c8e3dfba9 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.2.3", + "version": "3.3.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.2.3", + "@lingui/conf": "^3.3.0", "mkdirp": "^1.0.4" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index aa3408b6b..21c71ab90 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + + +### Bug Fixes + +* accept pseudolocalization in SelectOrdinal ([#903](https://github.com/lingui/js-lingui/issues/903)) ([d4c24bf](https://github.com/lingui/js-lingui/commit/d4c24bf6bbb1a6eeb651b1a70490b10f502a28c6)) +* formatters exceptions throw error ([#889](https://github.com/lingui/js-lingui/issues/889)) ([d6b774c](https://github.com/lingui/js-lingui/commit/d6b774cf53dd4bf691a228d3f05edaea2442b121)) +* plural pseudolocalization with offset ([#887](https://github.com/lingui/js-lingui/issues/887)) ([3d54b4d](https://github.com/lingui/js-lingui/commit/3d54b4d9b10b731733a385306263de2da08100ec)) + + +### Features + +* config accepts compilerBabelOptions ([#906](https://github.com/lingui/js-lingui/issues/906)) ([38d01ef](https://github.com/lingui/js-lingui/commit/38d01ef13a7867460b68ab709f94a17176a21f25)) +* extract messages from specific files ([#881](https://github.com/lingui/js-lingui/issues/881)) ([82dea5f](https://github.com/lingui/js-lingui/commit/82dea5f35b55cbb039a48e49fc94dbfbbaca7df9)) +* Implement gettext plurals for PO files ([#677](https://github.com/lingui/js-lingui/issues/677)) ([415b90e](https://github.com/lingui/js-lingui/commit/415b90e0abfb24bb7170a5ba7630a4ead94898dd)) + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **Note:** Version bump only for package @lingui/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index ce50f5a28..75d42c04a 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.2.3", + "version": "3.3.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.2.3", - "@lingui/conf": "^3.2.3", + "@lingui/babel-plugin-extract-messages": "^3.3.0", + "@lingui/conf": "^3.3.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 7d91bbc7e..846c19fa8 100644 --- a/packages/conf/CHANGELOG.md +++ b/packages/conf/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.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + + +### Features + +* add support for runtimeConfigModule w/ Trans ([#895](https://github.com/lingui/js-lingui/issues/895)) ([23b06b5](https://github.com/lingui/js-lingui/commit/23b06b5dfbf0db306cdfab83801898caceb5a8b0)) +* config accepts compilerBabelOptions ([#906](https://github.com/lingui/js-lingui/issues/906)) ([38d01ef](https://github.com/lingui/js-lingui/commit/38d01ef13a7867460b68ab709f94a17176a21f25)) +* Implement gettext plurals for PO files ([#677](https://github.com/lingui/js-lingui/issues/677)) ([415b90e](https://github.com/lingui/js-lingui/commit/415b90e0abfb24bb7170a5ba7630a4ead94898dd)) + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **Note:** Version bump only for package @lingui/conf diff --git a/packages/conf/package.json b/packages/conf/package.json index d3e4e748f..171c86874 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.2.3", + "version": "3.3.0", "description": "Get lingui configuration from package.json", "keywords": [ "lingui", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 5486a5909..3ba6766e1 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.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + +**Note:** Version bump only for package @lingui/core + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **Note:** Version bump only for package @lingui/core diff --git a/packages/core/package.json b/packages/core/package.json index 3a1eb52de..ab8cfcbc5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.2.3", + "version": "3.3.0", "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 05d5c8112..ffcf93e56 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.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **Note:** Version bump only for package @lingui/detect-locale diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index b227de2ad..bca884077 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.2.3", + "version": "3.3.0", "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 4f039e6df..aa3a34d0d 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.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + +**Note:** Version bump only for package @lingui/loader + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **Note:** Version bump only for package @lingui/loader diff --git a/packages/loader/package.json b/packages/loader/package.json index 57beddd97..7127b2567 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.2.3", + "version": "3.3.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.2.3", - "@lingui/conf": "^3.2.3", + "@lingui/cli": "^3.3.0", + "@lingui/conf": "^3.3.0", "loader-utils": "^2.0.0", "ramda": "^0.27.1" }, diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index 1d91c5ea1..e83250c64 100644 --- a/packages/macro/CHANGELOG.md +++ b/packages/macro/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + + +### Bug Fixes + +* macro underscore type ([#884](https://github.com/lingui/js-lingui/issues/884)) ([5cade19](https://github.com/lingui/js-lingui/commit/5cade1924dd038ba73ff85cdcf7ce80d31ddbd0f)) +* scaped literals double backslash formatting ([#898](https://github.com/lingui/js-lingui/issues/898)) ([fc8c628](https://github.com/lingui/js-lingui/commit/fc8c628e05522167c5ad76e2cb8c6161be95b8b4)) +* select prop types ([#890](https://github.com/lingui/js-lingui/issues/890)) ([672fb1f](https://github.com/lingui/js-lingui/commit/672fb1f5731fe0abeb2fa7ea0de78827e547873c)) + + +### Features + +* add support for runtimeConfigModule w/ Trans ([#895](https://github.com/lingui/js-lingui/issues/895)) ([23b06b5](https://github.com/lingui/js-lingui/commit/23b06b5dfbf0db306cdfab83801898caceb5a8b0)) + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) **Note:** Version bump only for package @lingui/macro diff --git a/packages/macro/package.json b/packages/macro/package.json index 71f907039..506036932 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.2.3", + "version": "3.3.0", "description": "Macro for generating messages in ICU MessageFormat syntax", "main": "index.ts", "author": { @@ -29,7 +29,7 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.2.3", + "@lingui/conf": "^3.3.0", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 744309a60..1af58941b 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.3.0](https://github.com/lingui/js-lingui/compare/v3.2.3...v3.3.0) (2020-12-08) + +**Note:** Version bump only for package @lingui/react + + + + + ## [3.2.3](https://github.com/lingui/js-lingui/compare/v3.2.2...v3.2.3) (2020-11-22) diff --git a/packages/react/package.json b/packages/react/package.json index a6d80b4c0..8eb8cf308 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.2.3", + "version": "3.3.0", "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.2.3" + "@lingui/core": "^3.3.0" }, "devDependencies": { "react-testing-library": "^8.0.1"