chore: update logging output to use os.Stderr

This commit is contained in:
Kayvan Sylvan
2025-07-15 00:00:09 -07:00
parent 4ef8578e47
commit f63e0dfc05
2 changed files with 2 additions and 2 deletions

View File

@@ -316,7 +316,7 @@ func (w *Walker) WalkHistorySinceTag(sinceTag string) (map[string]*Version, erro
currentVersion := "Unreleased"
err = commitIter.ForEach(func(c *object.Commit) error {
// Stop when we reach the tag commit
// Stop iteration when the hash of the current commit matches the hash of the specified sinceTag commit
if c.Hash == tagCommit.Hash {
return storer.ErrStop
}