2021-06-16 17:56:10 +00:00
|
|
|
package changelog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2022-07-04 06:10:02 +00:00
|
|
|
"github.com/make-go-great/date-go"
|
2021-06-16 17:56:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func generateVersionHeaderValue(version string, when time.Time) string {
|
2022-07-04 06:10:02 +00:00
|
|
|
return fmt.Sprintf("%s (%s)", version, date.FormatDateByDefault(when, time.Local))
|
2021-06-16 17:56:10 +00:00
|
|
|
}
|