Skip to content

Commit

Permalink
Merge pull request #124 from manifoldco/fix-go-i18n-dep
Browse files Browse the repository at this point in the history
Fix our dep on go-i18n
  • Loading branch information
jbowes committed Nov 29, 2019
2 parents 8a7d472 + f52e82f commit fa0cf95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Fixed

- Correct the dep on go-i18n

## [0.5.0] - 2019-11-29

### Added
Expand Down
11 changes: 4 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ module github.com/manifoldco/promptui

go 1.11

// Do not change the versions of kingpin or go-i18n;
// we will remove them when we stop using gometalinter

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/alecthomas/gometalinter v3.0.0+incompatible
Expand All @@ -18,17 +21,11 @@ require (
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/nicksnyder/go-i18n v0.0.0-00010101000000-000000000000 // indirect
github.com/nicksnyder/go-i18n v1.10.1 // indirect
github.com/tsenart/deadcode v0.0.0-20160724212837-210d2dc333e9
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3
golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b // indirect
golang.org/x/tools v0.0.0-20181122213734-04b5d21e00f1 // indirect

// Do not change this version of kingpin; we will remove it when we stop using gometalinter
gopkg.in/alecthomas/kingpin.v3-unstable v3.0.0-20171010053543-63abe20a23e2 // indirect

gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)

// Remove this when we stop using gometalinter and kingpin
replace github.com/nicksnyder/go-i18n => github.com/nicksnyder/go-i18n v1.10.1

0 comments on commit fa0cf95

Please sign in to comment.