diff --git a/CHANGELOG.md b/CHANGELOG.md index e26a9b7..e5858ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/go.mod b/go.mod index 017bfc1..4d98174 100644 --- a/go.mod +++ b/go.mod @@ -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 @@ -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