diff --git a/CHANGELOG.md b/CHANGELOG.md index d2008e852..6e5855b3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [1.11.0](https://github.com/Zhengqbbb/cz-git/compare/v1.10.1...v1.11.0) (2024-11-08) + + +### Bug Fixes + +* **cz-git,cli:** node v12 v14 startup error ([#200](https://github.com/Zhengqbbb/cz-git/issues/200)) ([a760f62](https://github.com/Zhengqbbb/cz-git/commit/a760f621726d9ad94f8d43209f5a20ffa276174d)) +* **plugin-inquirer:** press tab or right key exit error when input no complete value ([4cffb1a](https://github.com/Zhengqbbb/cz-git/commit/4cffb1a305235ba91fe3eef6ffa4f72b56ff7c0f)) + + +### Features + +* **cz-git:** provide config file type helper fn `defineConfig` and `definePrompt` ([#196](https://github.com/Zhengqbbb/cz-git/issues/196)) ([c6589de](https://github.com/Zhengqbbb/cz-git/commit/c6589de5a3653e7544e32dfcabcd6390fee8060a)), closes [#193](https://github.com/Zhengqbbb/cz-git/issues/193) +* **plugin-loader:** support esm and ts(experiment) configure load ([#197](https://github.com/Zhengqbbb/cz-git/issues/197)) ([1288093](https://github.com/Zhengqbbb/cz-git/commit/1288093d4eab6b4ad5ad32f0dc661b73fda057f2)) + + + ## [1.10.1](https://github.com/Zhengqbbb/cz-git/compare/v1.10.0...v1.10.1) (2024-10-06) diff --git a/docs/package.json b/docs/package.json index a8b733ea3..dcfcde646 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.10.1", + "version": "1.11.0", "private": true, "scripts": { "docs:build": "vitepress build", diff --git a/package.json b/package.json index 82b8aaae7..64ed76a28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cz-git", - "version": "1.10.1", + "version": "1.11.0", "private": true, "packageManager": "pnpm@9.11.0", "description": "A better customizable and git support commitizen adapter", diff --git a/packages/@cz-git/plugin-inquirer/package.json b/packages/@cz-git/plugin-inquirer/package.json index a5b104604..438e24e78 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.10.1", + "version": "1.11.0", "description": "provide cz-git inquirer plugins, include search-list, search-checkbox, complete-input", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", "license": "MIT", diff --git a/packages/@cz-git/plugin-loader/package.json b/packages/@cz-git/plugin-loader/package.json index ac8bf525e..322208667 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.10.1", + "version": "1.11.0", "description": "commitizen and commitlint configure loader for cz-git", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", "license": "MIT", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index abbea8ae1..def1c94ef 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,19 @@ +# [1.11.0](https://github.com/Zhengqbbb/cz-git/compare/v1.10.1...v1.11.0) (2024-11-08) + + +### Bug Fixes + +* **cz-git,cli:** node v12 v14 startup error ([#200](https://github.com/Zhengqbbb/cz-git/issues/200)) ([a760f62](https://github.com/Zhengqbbb/cz-git/commit/a760f621726d9ad94f8d43209f5a20ffa276174d)) +* **plugin-inquirer:** press tab or right key exit error when input no complete value ([4cffb1a](https://github.com/Zhengqbbb/cz-git/commit/4cffb1a305235ba91fe3eef6ffa4f72b56ff7c0f)) + + +### Features + +* **cz-git:** provide config file type helper fn `defineConfig` and `definePrompt` ([#196](https://github.com/Zhengqbbb/cz-git/issues/196)) ([c6589de](https://github.com/Zhengqbbb/cz-git/commit/c6589de5a3653e7544e32dfcabcd6390fee8060a)), closes [#193](https://github.com/Zhengqbbb/cz-git/issues/193) +* **plugin-loader:** support esm and ts(experiment) configure load ([#197](https://github.com/Zhengqbbb/cz-git/issues/197)) ([1288093](https://github.com/Zhengqbbb/cz-git/commit/1288093d4eab6b4ad5ad32f0dc661b73fda057f2)) + + + ## [1.10.1](https://github.com/Zhengqbbb/cz-git/compare/v1.10.0...v1.10.1) (2024-10-06) diff --git a/packages/cli/package.json b/packages/cli/package.json index e273bf637..b7c4c6afa 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "czg", - "version": "1.10.1", + "version": "1.11.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 492eca1b6..b37025e81 100644 --- a/packages/cz-git/CHANGELOG.md +++ b/packages/cz-git/CHANGELOG.md @@ -1,3 +1,19 @@ +# [1.11.0](https://github.com/Zhengqbbb/cz-git/compare/v1.10.1...v1.11.0) (2024-11-08) + + +### Bug Fixes + +* **cz-git,cli:** node v12 v14 startup error ([#200](https://github.com/Zhengqbbb/cz-git/issues/200)) ([a760f62](https://github.com/Zhengqbbb/cz-git/commit/a760f621726d9ad94f8d43209f5a20ffa276174d)) +* **plugin-inquirer:** press tab or right key exit error when input no complete value ([4cffb1a](https://github.com/Zhengqbbb/cz-git/commit/4cffb1a305235ba91fe3eef6ffa4f72b56ff7c0f)) + + +### Features + +* **cz-git:** provide config file type helper fn `defineConfig` and `definePrompt` ([#196](https://github.com/Zhengqbbb/cz-git/issues/196)) ([c6589de](https://github.com/Zhengqbbb/cz-git/commit/c6589de5a3653e7544e32dfcabcd6390fee8060a)), closes [#193](https://github.com/Zhengqbbb/cz-git/issues/193) +* **plugin-loader:** support esm and ts(experiment) configure load ([#197](https://github.com/Zhengqbbb/cz-git/issues/197)) ([1288093](https://github.com/Zhengqbbb/cz-git/commit/1288093d4eab6b4ad5ad32f0dc661b73fda057f2)) + + + ## [1.10.1](https://github.com/Zhengqbbb/cz-git/compare/v1.10.0...v1.10.1) (2024-10-06) diff --git a/packages/cz-git/package.json b/packages/cz-git/package.json index 0e5f22bee..62500a183 100644 --- a/packages/cz-git/package.json +++ b/packages/cz-git/package.json @@ -1,6 +1,6 @@ { "name": "cz-git", - "version": "1.10.1", + "version": "1.11.0", "description": "A better customizable and git support commitizen adapter", "author": "Zhengqbbb (https://github.com/Zhengqbbb)", "license": "MIT",