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