Skip to content

Commit

Permalink
Fixed default params
Browse files Browse the repository at this point in the history
  • Loading branch information
percona-csalguero committed Oct 13, 2019
1 parent 3ca9a74 commit c29a09e
Show file tree
Hide file tree
Showing 6 changed files with 149 additions and 180 deletions.
28 changes: 28 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# you may remove this if you don't use vgo
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
112 changes: 77 additions & 35 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 26 additions & 10 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
Expand All @@ -17,34 +16,51 @@
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/go-ini/ini"
version = "1.48.0"

[[constraint]]
name = "github.com/go-sql-driver/mysql"
version = "1.3.0"
version = "1.4.1"

[[constraint]]
branch = "master"
name = "github.com/gosuri/uiprogress"
version = "0.0.1"

[[constraint]]
branch = "master"
name = "github.com/hashicorp/go-version"
version = "1.2.0"

[[constraint]]
branch = "master"
name = "github.com/icrowley/fake"

[[constraint]]
branch = "master"
name = "github.com/kr/pretty"
version = "0.1.0"

[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"
version = "0.8.1"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.4.2"

[[constraint]]
name = "gopkg.in/alecthomas/kingpin.v2"
version = "2.2.5"
version = "2.2.6"

[prune]
go-tests = true
unused-packages = true
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ https://github.com/Percona-Lab/mysql_random_data_load/releases

## Version history

#### 0.1.10
- Fixed argument validations
- Fixed ~/.my.cnf loading

#### 0.1.10
- Fixed connection parameters for MySQL 5.7 (set driver's AllowNativePasswords: true)

Expand Down
Loading

0 comments on commit c29a09e

Please sign in to comment.