Skip to content

Commit c29a09e

Browse files
Fixed default params
1 parent 3ca9a74 commit c29a09e

File tree

6 files changed

+149
-180
lines changed

6 files changed

+149
-180
lines changed

.goreleaser.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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:'

Gopkg.lock

+77-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+26-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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"]
@@ -17,34 +16,51 @@
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

README.md

+4
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)