-
- Downloads
feat: allow to customize the format commit template
... | @@ -2,10 +2,14 @@ module github.com/go-semantic-release/changelog-generator-default | ... | @@ -2,10 +2,14 @@ module github.com/go-semantic-release/changelog-generator-default |
go 1.19 | go 1.19 | ||
require github.com/go-semantic-release/semantic-release/v2 v2.25.0 | require ( | ||
github.com/go-semantic-release/semantic-release/v2 v2.25.0 | |||
github.com/stretchr/testify v1.8.1 | |||
) | |||
require ( | require ( | ||
github.com/Masterminds/semver/v3 v3.2.0 // indirect | github.com/Masterminds/semver/v3 v3.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | |||
github.com/fatih/color v1.13.0 // indirect | github.com/fatih/color v1.13.0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | github.com/golang/protobuf v1.5.2 // indirect | ||
... | @@ -22,6 +26,7 @@ require ( | ... | @@ -22,6 +26,7 @@ require ( |
github.com/oklog/run v1.1.0 // indirect | github.com/oklog/run v1.1.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | |||
github.com/spf13/afero v1.9.3 // indirect | github.com/spf13/afero v1.9.3 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/cobra v1.6.1 // indirect | github.com/spf13/cobra v1.6.1 // indirect | ||
... | ... |
Please register or sign in to comment