2 Commits

Author SHA1 Message Date
8e203b7689 feat(编译目标): 切换到go1.19,预编译二进制添加龙芯支持
All checks were successful
continuous-integration/drone/push Build is passing
2022-08-09 16:15:38 +08:00
8168b719fd style(代码风格): 调整风格
All checks were successful
continuous-integration/drone/push Build is passing
2022-03-10 14:05:13 +08:00
2 changed files with 3 additions and 3 deletions

View File

@ -236,11 +236,11 @@ func GenerateCommit(czCommit *CzCommit) string {
commit += "\n\n"
}
if czCommit.BreakingChange != nil {
commit += ("BREAKING CHANGE: " + *czCommit.BreakingChange)
commit += "BREAKING CHANGE: " + *czCommit.BreakingChange
commit += "\n\n"
}
if czCommit.Closes != nil {
commit += ("Closes fix " + *czCommit.Closes)
commit += "Closes fix " + *czCommit.Closes
}
return commit
}

2
go.mod
View File

@ -1,3 +1,3 @@
module github.com/xiaoqidun/gitcz
go 1.18
go 1.19