diff --git a/CHANGELOG.md b/CHANGELOG.md index 550466634..4dcc98be8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## [1.6.2](https://github.com/Zhengqbbb/cz-git/compare/v1.6.1...v1.6.2) (2023-07-09) + + +### Bug Fixes + +* **cli:** bootstrap using require to support node v10 ([2e71dd5](https://github.com/Zhengqbbb/cz-git/commit/2e71dd5fdaba714b8dbc26c7920f0ca6eaa99e35)), closes [#115](https://github.com/Zhengqbbb/cz-git/issues/115) +* windows system is unable to load the global configuration ([#133](https://github.com/Zhengqbbb/cz-git/issues/133)) ([d09fee4](https://github.com/Zhengqbbb/cz-git/commit/d09fee4c985efaa93f3282b237dd3de5747f173d)), closes [#132](https://github.com/Zhengqbbb/cz-git/issues/132) + + +### Features + +* allow set scope as direct input to use ([#113](https://github.com/Zhengqbbb/cz-git/issues/113)) ([a2a4443](https://github.com/Zhengqbbb/cz-git/commit/a2a4443786194c582b74be769c7afd37950dd9f3)) +* **cli:** add `--api-endpoint` | rename `--api-key` ([#136](https://github.com/Zhengqbbb/cz-git/issues/136)) ([4bd33f5](https://github.com/Zhengqbbb/cz-git/commit/4bd33f5edb685a880ae6e3e62cee827f519facd6)) +* **cli:** add type for js config ([#135](https://github.com/Zhengqbbb/cz-git/issues/135)) ([9ca09aa](https://github.com/Zhengqbbb/cz-git/commit/9ca09aa7f3273f293bb2c35c998141eb61ce32b7)) +* **cz-git,cli:** confirm message subject colorizen `themeColorCode` ([723dfe8](https://github.com/Zhengqbbb/cz-git/commit/723dfe8a15d2b7000548dbd87fbc9cfc1e0b3fc1)) + + +### Performance Improvements + +* **cz-git,czg:** reduce duplicate deps in bundle ([#111](https://github.com/Zhengqbbb/cz-git/issues/111)) ([2a52479](https://github.com/Zhengqbbb/cz-git/commit/2a5247902be16df400201883593fe49ce61187d3)) + + + ## [1.6.1](https://github.com/Zhengqbbb/cz-git/compare/v1.6.0...v1.6.1) (2023-03-22) diff --git a/package.json b/package.json index f14a1dc23..91f00ca87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cz-git", - "version": "1.6.1", + "version": "1.6.2", "private": true, "description": "A better customizable and git support commitizen adapter", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", diff --git a/packages/@cz-git/plugin-inquirer/package.json b/packages/@cz-git/plugin-inquirer/package.json index 7079883a7..4ad751598 100644 --- a/packages/@cz-git/plugin-inquirer/package.json +++ b/packages/@cz-git/plugin-inquirer/package.json @@ -1,6 +1,6 @@ { "name": "@cz-git/inquirer", - "version": "1.6.1", + "version": "1.6.2", "description": "provide cz-git inquirer plugins, include search-list, search-checkbox, complete-input", "author": "Zhengqbbb <1074059947@qq.com>", "license": "MIT", diff --git a/packages/@cz-git/plugin-loader/package.json b/packages/@cz-git/plugin-loader/package.json index acbc22ba1..5ca54c9bf 100644 --- a/packages/@cz-git/plugin-loader/package.json +++ b/packages/@cz-git/plugin-loader/package.json @@ -1,6 +1,6 @@ { "name": "@cz-git/loader", - "version": "1.6.1", + "version": "1.6.2", "description": "commitizen and commitlint configure loader for cz-git", "author": "Zhengqbbb <1074059947@qq.com>", "license": "MIT", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b3d4fe8eb..7c538c523 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,26 @@ +## [1.6.2](https://github.com/Zhengqbbb/cz-git/compare/v1.6.1...v1.6.2) (2023-07-09) + + +### Bug Fixes + +* **cli:** bootstrap using require to support node v10 ([2e71dd5](https://github.com/Zhengqbbb/cz-git/commit/2e71dd5fdaba714b8dbc26c7920f0ca6eaa99e35)), closes [#115](https://github.com/Zhengqbbb/cz-git/issues/115) +* windows system is unable to load the global configuration ([#133](https://github.com/Zhengqbbb/cz-git/issues/133)) ([d09fee4](https://github.com/Zhengqbbb/cz-git/commit/d09fee4c985efaa93f3282b237dd3de5747f173d)), closes [#132](https://github.com/Zhengqbbb/cz-git/issues/132) + + +### Features + +* allow set scope as direct input to use ([#113](https://github.com/Zhengqbbb/cz-git/issues/113)) ([a2a4443](https://github.com/Zhengqbbb/cz-git/commit/a2a4443786194c582b74be769c7afd37950dd9f3)) +* **cli:** add `--api-endpoint` | rename `--api-key` ([#136](https://github.com/Zhengqbbb/cz-git/issues/136)) ([4bd33f5](https://github.com/Zhengqbbb/cz-git/commit/4bd33f5edb685a880ae6e3e62cee827f519facd6)) +* **cli:** add type for js config ([#135](https://github.com/Zhengqbbb/cz-git/issues/135)) ([9ca09aa](https://github.com/Zhengqbbb/cz-git/commit/9ca09aa7f3273f293bb2c35c998141eb61ce32b7)) +* **cz-git,cli:** confirm message subject colorizen `themeColorCode` ([723dfe8](https://github.com/Zhengqbbb/cz-git/commit/723dfe8a15d2b7000548dbd87fbc9cfc1e0b3fc1)) + + +### Performance Improvements + +* **cz-git,czg:** reduce duplicate deps in bundle ([#111](https://github.com/Zhengqbbb/cz-git/issues/111)) ([2a52479](https://github.com/Zhengqbbb/cz-git/commit/2a5247902be16df400201883593fe49ce61187d3)) + + + ## [1.6.1](https://github.com/Zhengqbbb/cz-git/compare/v1.6.0...v1.6.1) (2023-03-22) diff --git a/packages/cli/package.json b/packages/cli/package.json index d71047be7..98c040238 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "czg", - "version": "1.6.1", + "version": "1.6.2", "description": "Interactive Commitizen CLI that generate standardized git commit message", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", "license": "MIT", diff --git a/packages/cz-git/CHANGELOG.md b/packages/cz-git/CHANGELOG.md index 133e9eb9e..a30841ffd 100644 --- a/packages/cz-git/CHANGELOG.md +++ b/packages/cz-git/CHANGELOG.md @@ -1,3 +1,26 @@ +## [1.6.2](https://github.com/Zhengqbbb/cz-git/compare/v1.6.1...v1.6.2) (2023-07-09) + + +### Bug Fixes + +* **cli:** bootstrap using require to support node v10 ([2e71dd5](https://github.com/Zhengqbbb/cz-git/commit/2e71dd5fdaba714b8dbc26c7920f0ca6eaa99e35)), closes [#115](https://github.com/Zhengqbbb/cz-git/issues/115) +* windows system is unable to load the global configuration ([#133](https://github.com/Zhengqbbb/cz-git/issues/133)) ([d09fee4](https://github.com/Zhengqbbb/cz-git/commit/d09fee4c985efaa93f3282b237dd3de5747f173d)), closes [#132](https://github.com/Zhengqbbb/cz-git/issues/132) + + +### Features + +* allow set scope as direct input to use ([#113](https://github.com/Zhengqbbb/cz-git/issues/113)) ([a2a4443](https://github.com/Zhengqbbb/cz-git/commit/a2a4443786194c582b74be769c7afd37950dd9f3)) +* **cli:** add `--api-endpoint` | rename `--api-key` ([#136](https://github.com/Zhengqbbb/cz-git/issues/136)) ([4bd33f5](https://github.com/Zhengqbbb/cz-git/commit/4bd33f5edb685a880ae6e3e62cee827f519facd6)) +* **cli:** add type for js config ([#135](https://github.com/Zhengqbbb/cz-git/issues/135)) ([9ca09aa](https://github.com/Zhengqbbb/cz-git/commit/9ca09aa7f3273f293bb2c35c998141eb61ce32b7)) +* **cz-git,cli:** confirm message subject colorizen `themeColorCode` ([723dfe8](https://github.com/Zhengqbbb/cz-git/commit/723dfe8a15d2b7000548dbd87fbc9cfc1e0b3fc1)) + + +### Performance Improvements + +* **cz-git,czg:** reduce duplicate deps in bundle ([#111](https://github.com/Zhengqbbb/cz-git/issues/111)) ([2a52479](https://github.com/Zhengqbbb/cz-git/commit/2a5247902be16df400201883593fe49ce61187d3)) + + + ## [1.6.1](https://github.com/Zhengqbbb/cz-git/compare/v1.6.0...v1.6.1) (2023-03-22) diff --git a/packages/cz-git/package.json b/packages/cz-git/package.json index 705583c82..3bc5d8e8c 100644 --- a/packages/cz-git/package.json +++ b/packages/cz-git/package.json @@ -1,6 +1,6 @@ { "name": "cz-git", - "version": "1.6.1", + "version": "1.6.2", "description": "A better customizable and git support commitizen adapter", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", "license": "MIT",