diff --git a/CHANGELOG.md b/CHANGELOG.md index 852ce3aad..0cf2a79cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.8.0](https://github.com/Zhengqbbb/cz-git/compare/v1.7.1...v1.8.0) (2023-12-06) + + +### Features + +* **cz-git,cli:** `defaultScope` support `string[]` to default-select for checkbox mode ([#148](https://github.com/Zhengqbbb/cz-git/issues/148)) ([a02b7d1](https://github.com/Zhengqbbb/cz-git/commit/a02b7d1d1d0c1d48fa7044679afd7c32b8837849)), closes [#140](https://github.com/Zhengqbbb/cz-git/issues/140) + + + ## [1.7.1](https://github.com/Zhengqbbb/cz-git/compare/v1.7.0...v1.7.1) (2023-08-08) diff --git a/docs/public/schema/cz-git.json b/docs/public/schema/cz-git.json index 20c13e379..a0617b014 100644 --- a/docs/public/schema/cz-git.json +++ b/docs/public/schema/cz-git.json @@ -287,7 +287,17 @@ "description": ": pin type item the top of the types list (match item value)" }, "defaultScope": { - "type": "string", + "anyOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ], "description": ": Whether to use display default value in custom scope" }, "defaultSubject": { diff --git a/package.json b/package.json index 2686b3611..a48a3b673 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cz-git", - "version": "1.7.1", + "version": "1.8.0", "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 bae661eee..f84e70040 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.7.1", + "version": "1.8.0", "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 51570bfd1..219b0999d 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.7.1", + "version": "1.8.0", "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 e7d83adfb..ec70a755b 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.8.0](https://github.com/Zhengqbbb/cz-git/compare/v1.7.1...v1.8.0) (2023-12-06) + + +### Features + +* **cz-git,cli:** `defaultScope` support `string[]` to default-select for checkbox mode ([#148](https://github.com/Zhengqbbb/cz-git/issues/148)) ([a02b7d1](https://github.com/Zhengqbbb/cz-git/commit/a02b7d1d1d0c1d48fa7044679afd7c32b8837849)), closes [#140](https://github.com/Zhengqbbb/cz-git/issues/140) + + + ## [1.7.1](https://github.com/Zhengqbbb/cz-git/compare/v1.7.0...v1.7.1) (2023-08-08) diff --git a/packages/cli/package.json b/packages/cli/package.json index 2bfb13c57..d33536db0 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "czg", - "version": "1.7.1", + "version": "1.8.0", "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 64a45d472..016b45562 100644 --- a/packages/cz-git/CHANGELOG.md +++ b/packages/cz-git/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.8.0](https://github.com/Zhengqbbb/cz-git/compare/v1.7.1...v1.8.0) (2023-12-06) + + +### Features + +* **cz-git,cli:** `defaultScope` support `string[]` to default-select for checkbox mode ([#148](https://github.com/Zhengqbbb/cz-git/issues/148)) ([a02b7d1](https://github.com/Zhengqbbb/cz-git/commit/a02b7d1d1d0c1d48fa7044679afd7c32b8837849)), closes [#140](https://github.com/Zhengqbbb/cz-git/issues/140) + + + ## [1.7.1](https://github.com/Zhengqbbb/cz-git/compare/v1.7.0...v1.7.1) (2023-08-08) diff --git a/packages/cz-git/package.json b/packages/cz-git/package.json index 9e3617f6b..bf3955da0 100644 --- a/packages/cz-git/package.json +++ b/packages/cz-git/package.json @@ -1,6 +1,6 @@ { "name": "cz-git", - "version": "1.7.1", + "version": "1.8.0", "description": "A better customizable and git support commitizen adapter", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", "license": "MIT",