From cdca08648fa8d980356d4be6c17ba97470e84d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Tejo=CC=81n?= Date: Mon, 8 Jan 2024 17:17:43 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.3.2=20=E2=86=92=200.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.toml | 2 +- CHANGELOG.md | 10 ++++++++++ cmd/root.go | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.cz.toml b/.cz.toml index 3af0c60..38f3128 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ name = "cz_conventional_commits" tag_format = "$version" version_scheme = "semver" -version = "0.3.2" +version = "0.4.0" update_changelog_on_bump = true major_version_zero = true version_files = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad50b6..cdfd1f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.4.0 (2024-01-08) + +### Feat + +- add version command + +### Fix + +- update version + ## 0.3.2 (2023-12-05) ### Fix diff --git a/cmd/root.go b/cmd/root.go index bc3cb98..3cd4cb5 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -9,7 +9,7 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "gommitizen", - Version: "0.3.2", + Version: "0.4.0", Short: "A commitizen implementation for Go with multi-project support", Long: `A commitizen implementation for Go with multi-project support. It only supports the conventional commits specification: https://www.conventionalcommits.org/en/v1.0.0/