changeloguru/internal/changelog/generate.go

13 lines
217 B
Go
Raw Normal View History

package changelog
import (
"fmt"
"time"
2021-12-11 03:37:42 +00:00
"github.com/haunt98/clock-go"
)
func generateVersionHeaderValue(version string, when time.Time) string {
return fmt.Sprintf("%s (%s)", version, clock.FormatDate(when))
}