Compare commits
No commits in common. "main" and "0.12.0" have entirely different histories.
@ -1,9 +1,3 @@
|
||||
## 0.13.0 (2024-10-25)
|
||||
|
||||
### Feat
|
||||
|
||||
- :sparkles: use time.Time.Before() instead of Sub()
|
||||
|
||||
## 0.12.0 (2024-10-25)
|
||||
|
||||
### Feat
|
||||
|
2
cz.yaml
2
cz.yaml
@ -5,5 +5,5 @@ commitizen:
|
||||
name: cz_conventional_commits
|
||||
tag_format: $version
|
||||
update_changelog_on_bump: true
|
||||
version: 0.13.0
|
||||
version: 0.12.0
|
||||
version_scheme: semver
|
||||
|
@ -99,7 +99,7 @@ func getLatestGitTag(options ...GetLatestGitTagOption) (string, error) {
|
||||
return "", fmt.Errorf("error iterating tags %w", err)
|
||||
}
|
||||
|
||||
if tagDate != nil && t.Tagger.When.Before(*tagDate) {
|
||||
if tagDate != nil && t.Tagger.When.Sub(*tagDate) > 0 {
|
||||
continue
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user