Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Svetlin Ralchev committed Jun 22, 2020
1 parent 4e4a906 commit ecb0c72
Show file tree
Hide file tree
Showing 3 changed files with 333 additions and 53 deletions.
2 changes: 1 addition & 1 deletion cmd/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (m *SQLMigration) before(ctx *cli.Context) error {

m.dir, err = filepath.Abs(ctx.String("migration-dir"))
if err != nil {
return cli.WrapError(err, ErrCodeArg)
return cli.WrapError(err).WithCode(ErrCodeArg)
}

m.db = db
Expand Down
18 changes: 9 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ require (
github.com/fatih/color v1.9.0
github.com/go-openapi/inflect v0.19.0
github.com/go-sql-driver/mysql v1.5.0
github.com/gosuri/uitable v0.0.3
github.com/gosuri/uitable v0.0.4
github.com/jmoiron/sqlx v1.2.0
github.com/lib/pq v1.7.0
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mattn/go-sqlite3 v1.11.0
github.com/olekukonko/tablewriter v0.0.1
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-sqlite3 v1.14.0
github.com/olekukonko/tablewriter v0.0.4
github.com/onsi/ginkgo v1.12.3
github.com/onsi/gomega v1.10.1
github.com/phogolabs/cli v0.0.0-20191007115343-b45b57e5579e
github.com/phogolabs/log v0.0.0-20191007140342-5ee8fbe3bae8
github.com/phogolabs/parcello v0.8.1
golang.org/x/tools v0.0.0-20191005014404-c9f9432ec4b2
google.golang.org/appengine v1.6.4 // indirect
github.com/phogolabs/cli v0.0.0-20200622104355-c8a9ba892359
github.com/phogolabs/log v0.0.0-20200622103245-74442d37de9f
github.com/phogolabs/parcello v0.8.2
golang.org/x/mod v0.3.0 // indirect
golang.org/x/tools v0.0.0-20200619210111-0f592d2728bb
)

go 1.13
Loading

0 comments on commit ecb0c72

Please sign in to comment.