From c9f581c6b01652273f4f0e1a8bf1800147b2ea69 Mon Sep 17 00:00:00 2001 From: James Bowes Date: Sat, 11 Jan 2020 10:27:25 -0400 Subject: [PATCH] Remove support for go1.11 --- .travis.yml | 1 - CHANGELOG.md | 4 ++++ go.mod | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d74142b..01c16c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ dist: bionic language: go go: - - "1.11.x" - "1.12.x" - "1.13.x" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a814fb..f7fa469 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Add support for setting initial cursor position - Switch to golangci-lint for linting +### Removed + +- Removed support for Go 1.11 + ### Fixed - Reduce tool-based deps, hopefully fixing any install issues diff --git a/go.mod b/go.mod index 6c728eb..760a44d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/manifoldco/promptui -go 1.11 +go 1.12 require ( github.com/chzyer/logex v1.1.10 // indirect