0
0
mirror of https://github.com/thegeeklab/git-sv.git synced 2024-11-24 21:20:40 +00:00

fix: use full version and not only major, minor and patch at changelog and releasenotes

issue: #16
This commit is contained in:
Beatriz Vieira 2021-04-10 17:18:14 -03:00
parent e4e395ee39
commit 8ff0147ec9

View File

@ -2,7 +2,6 @@ package sv
import ( import (
"bytes" "bytes"
"fmt"
"text/template" "text/template"
) )
@ -96,7 +95,7 @@ func releaseNoteVariables(releasenote ReleaseNote) releaseNoteTemplateVariables
var version = "" var version = ""
if releasenote.Version != nil { if releasenote.Version != nil {
version = fmt.Sprintf("%d.%d.%d", releasenote.Version.Major(), releasenote.Version.Minor(), releasenote.Version.Patch()) version = releasenote.Version.String()
} }
return releaseNoteTemplateVariables{ return releaseNoteTemplateVariables{
Version: version, Version: version,