File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # This is an example goreleaser.yaml file with some sane defaults.
2+ # Make sure to check the documentation at http://goreleaser.com
3+ before :
4+ hooks :
5+ # you may remove this if you don't use vgo
6+ - go mod tidy
7+ # you may remove this if you don't need go generate
8+ - go generate ./...
9+ builds :
10+ - env :
11+ - CGO_ENABLED=0
12+ archives :
13+ - replacements :
14+ darwin : Darwin
15+ linux : Linux
16+ windows : Windows
17+ 386 : i386
18+ amd64 : x86_64
19+ checksum :
20+ name_template : ' checksums.txt'
21+ snapshot :
22+ name_template : " {{ .Tag }}-next"
23+ changelog :
24+ sort : asc
25+ filters :
26+ exclude :
27+ - ' ^docs:'
28+ - ' ^test:'
Original file line number Diff line number Diff line change 1-
21# Gopkg.toml example
32#
4- # Refer to https://github.com/golang/ dep/blob/master/ docs/Gopkg.toml.md
3+ # Refer to https://golang. github.io/ dep/docs/Gopkg.toml.html
54# for detailed Gopkg.toml documentation.
65#
76# required = ["github.com/user/thing/cmd/thing"]
1716# source = "github.com/myfork/project2"
1817#
1918# [[override]]
20- # name = "github.com/x/y"
21- # version = "2.4.0"
19+ # name = "github.com/x/y"
20+ # version = "2.4.0"
21+ #
22+ # [prune]
23+ # non-go = false
24+ # go-tests = true
25+ # unused-packages = true
2226
2327
28+ [[constraint ]]
29+ name = " github.com/go-ini/ini"
30+ version = " 1.48.0"
31+
2432[[constraint ]]
2533 name = " github.com/go-sql-driver/mysql"
26- version = " 1.3.0 "
34+ version = " 1.4.1 "
2735
2836[[constraint ]]
29- branch = " master"
3037 name = " github.com/gosuri/uiprogress"
38+ version = " 0.0.1"
3139
3240[[constraint ]]
33- branch = " master"
3441 name = " github.com/hashicorp/go-version"
42+ version = " 1.2.0"
3543
3644[[constraint ]]
3745 branch = " master"
3846 name = " github.com/icrowley/fake"
3947
4048[[constraint ]]
41- branch = " master"
4249 name = " github.com/kr/pretty"
50+ version = " 0.1.0"
4351
4452[[constraint ]]
4553 name = " github.com/pkg/errors"
46- version = " 0.8.0"
54+ version = " 0.8.1"
55+
56+ [[constraint ]]
57+ name = " github.com/sirupsen/logrus"
58+ version = " 1.4.2"
4759
4860[[constraint ]]
4961 name = " gopkg.in/alecthomas/kingpin.v2"
50- version = " 2.2.5"
62+ version = " 2.2.6"
63+
64+ [prune ]
65+ go-tests = true
66+ unused-packages = true
Original file line number Diff line number Diff line change @@ -172,6 +172,10 @@ https://github.com/Percona-Lab/mysql_random_data_load/releases
172172
173173## Version history
174174
175+ #### 0.1.10
176+ - Fixed argument validations
177+ - Fixed ~ /.my.cnf loading
178+
175179#### 0.1.10
176180- Fixed connection parameters for MySQL 5.7 (set driver's AllowNativePasswords: true)
177181
You can’t perform that action at this time.
0 commit comments