You've already forked go-semantic-release
Enable new features in `.release.yml` like ```yml changelog: showAuthors: false ## Show authors in changelog showBodyAsHeader: false ## Show all bodies of the commits as header of changelog (useful for squash commit flow to show long text in release) ```
49 lines
1.9 KiB
Modula-2
49 lines
1.9 KiB
Modula-2
module github.com/Nightapes/go-semantic-release
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/Masterminds/semver v1.5.0
|
|
github.com/go-git/go-billy/v5 v5.3.1
|
|
github.com/go-git/go-git/v5 v5.4.2
|
|
github.com/google/go-github/v25 v25.1.3
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.4.0
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/tidwall/sjson v1.2.4
|
|
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
|
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect
|
|
github.com/acomagu/bufpipe v1.0.3 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/emirpasic/gods v1.12.1 // indirect
|
|
github.com/go-git/gcfg v1.5.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
github.com/kevinburke/ssh_config v1.2.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/sergi/go-diff v1.2.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/tidwall/gjson v1.14.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
github.com/xanzy/ssh-agent v0.3.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
|
|
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3 // indirect
|
|
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|