Skip to content

Commit

Permalink
Deprecate Go < 1.14 (#1323)
Browse files Browse the repository at this point in the history
In accordance with our adopted best practices, the main branch and the
next major release of Cobra will deprecate older and un-maintained
versions of Golang.

fix #1322
  • Loading branch information
jharshman committed Feb 1, 2021
1 parent 1135bde commit 1d71ff0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -6,8 +6,8 @@ stages:
- build

go:
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- tip

before_install:
Expand All @@ -19,10 +19,10 @@ matrix:
- go: tip
include:
- stage: diff
go: 1.13.x
go: 1.14.x
script: make fmt
- stage: build
go: 1.13.x
go: 1.14.x
script: make cobra_generator

script:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/spf13/cobra

go 1.12
go 1.14

require (
github.com/cpuguy83/go-md2man/v2 v2.0.0
Expand Down

0 comments on commit 1d71ff0

Please sign in to comment.