templateChanges = "templateChanges"
coreChanges = "coreChanges"
outChanges = "outChanges"
- docsChanges = "docsChanges"
otherChanges = "otherChanges"
)
category = notesChanges
} else if regexp.MustCompile("(?i)tpl|tplimpl:|layout").MatchString(los) {
category = templateChanges
- } else if regexp.MustCompile("(?i)docs?:|documentation:").MatchString(los) {
- category = docsChanges
} else if regexp.MustCompile("(?i)hugolib:").MatchString(los) {
category = coreChanges
} else if regexp.MustCompile("(?i)out(put)?:|media:|Output|Media").MatchString(los) {
}
// Ignore autogenerated commits etc. in change log. This is a regexp.
-const ignoredCommits = "releaser?:|snapcraft:"
+const ignoredCommits = "releaser?:|snapcraft:|Merge commit|Squashed|Revert"
func gitLogBefore(ref, tag string) (string, error) {
var prevTag string
{{ $tmplChanges := index . "templateChanges" -}}
{{- $outChanges := index . "outChanges" -}}
{{- $coreChanges := index . "coreChanges" -}}
-{{- $docsChanges := index . "docsChanges" -}}
{{- $otherChanges := index . "otherChanges" -}}
{{- with $tmplChanges -}}
### Templates
### Core
{{ template "change-section" . }}
{{- end -}}
-{{- with $docsChanges -}}
-### Docs
-{{ template "change-section" . }}
-{{- end -}}
{{- with $otherChanges -}}
### Other
{{ template "change-section" . }}
"os/exec"
"path/filepath"
"regexp"
+ "strings"
"github.com/gohugoio/hugo/helpers"
)
if try {
rh.git = func(args ...string) (string, error) {
- fmt.Println("git", args)
+ fmt.Println("git", strings.Join(args, " "))
return "", nil
}
} else {