File tree 6 files changed +149
-180
lines changed
6 files changed +149
-180
lines changed 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
-
2
1
# Gopkg.toml example
3
2
#
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
5
4
# for detailed Gopkg.toml documentation.
6
5
#
7
6
# required = ["github.com/user/thing/cmd/thing"]
17
16
# source = "github.com/myfork/project2"
18
17
#
19
18
# [[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
22
26
23
27
28
+ [[constraint ]]
29
+ name = " github.com/go-ini/ini"
30
+ version = " 1.48.0"
31
+
24
32
[[constraint ]]
25
33
name = " github.com/go-sql-driver/mysql"
26
- version = " 1.3.0 "
34
+ version = " 1.4.1 "
27
35
28
36
[[constraint ]]
29
- branch = " master"
30
37
name = " github.com/gosuri/uiprogress"
38
+ version = " 0.0.1"
31
39
32
40
[[constraint ]]
33
- branch = " master"
34
41
name = " github.com/hashicorp/go-version"
42
+ version = " 1.2.0"
35
43
36
44
[[constraint ]]
37
45
branch = " master"
38
46
name = " github.com/icrowley/fake"
39
47
40
48
[[constraint ]]
41
- branch = " master"
42
49
name = " github.com/kr/pretty"
50
+ version = " 0.1.0"
43
51
44
52
[[constraint ]]
45
53
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"
47
59
48
60
[[constraint ]]
49
61
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
172
172
173
173
## Version history
174
174
175
+ #### 0.1.10
176
+ - Fixed argument validations
177
+ - Fixed ~ /.my.cnf loading
178
+
175
179
#### 0.1.10
176
180
- Fixed connection parameters for MySQL 5.7 (set driver's AllowNativePasswords: true)
177
181
You can’t perform that action at this time.
0 commit comments