From 41212fea63c440a4b915877f75490b3abb18fe14 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Sun, 9 Sep 2018 06:26:26 +0000 Subject: [PATCH 1/6] Add go1.11 to CI --- .travis.yml | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f408b4cc8..7fce205e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ go: - "1.8" - "1.9" - "1.10" + - "1.11" - tip script: diff --git a/README.md b/README.md index 51b6df347..15f42db06 100644 --- a/README.md +++ b/README.md @@ -319,7 +319,7 @@ To update Testify to the latest version, use `go get -u github.com/stretchr/test Supported go versions ================== -We support the three major Go versions, which are 1.8, 1.9 and 1.10 at the moment. +We support the four major Go versions, which are 1.8, 1.9, 1.10, and 1.11 at the moment. ------ From 435bd6eaf13959bbb151fc7b511ee07b4a86fe6a Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Sun, 16 Sep 2018 08:32:12 -0700 Subject: [PATCH 2/6] Remove 1.8 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7fce205e5..09fbf8aed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: go sudo: false go: - - "1.8" - "1.9" - "1.10" - "1.11" From 0498a9c3b18a63465d19c06ad5cb2c9fe72dafc4 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Sun, 16 Sep 2018 08:33:07 -0700 Subject: [PATCH 3/6] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 15f42db06..265a9ec3b 100644 --- a/README.md +++ b/README.md @@ -319,10 +319,9 @@ To update Testify to the latest version, use `go get -u github.com/stretchr/test Supported go versions ================== -We support the four major Go versions, which are 1.8, 1.9, 1.10, and 1.11 at the moment. +We support the three major Go versions, which are 1.9, 1.10, and 1.11 at the moment. ------ - Contributing ============ From 367e6ec6622b91a861cb32f5b72a30e1126450d5 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Mon, 17 Sep 2018 06:11:58 +0000 Subject: [PATCH 4/6] Revert "Update README.md" This reverts commit 0498a9c3b18a63465d19c06ad5cb2c9fe72dafc4. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 265a9ec3b..15f42db06 100644 --- a/README.md +++ b/README.md @@ -319,9 +319,10 @@ To update Testify to the latest version, use `go get -u github.com/stretchr/test Supported go versions ================== -We support the three major Go versions, which are 1.9, 1.10, and 1.11 at the moment. +We support the four major Go versions, which are 1.8, 1.9, 1.10, and 1.11 at the moment. ------ + Contributing ============ From e0ff43ef96187c943d3e041e2fca79777d3d3c5c Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Mon, 17 Sep 2018 06:12:12 +0000 Subject: [PATCH 5/6] Revert "Remove 1.8" This reverts commit 435bd6eaf13959bbb151fc7b511ee07b4a86fe6a. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 09fbf8aed..7fce205e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: go sudo: false go: + - "1.8" - "1.9" - "1.10" - "1.11" From d8dbbc7d4109ce4661160cf9936282a2264cbd35 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Tue, 18 Sep 2018 05:40:26 +0000 Subject: [PATCH 6/6] Change README not to expand support for more than three versions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15f42db06..747c7d33c 100644 --- a/README.md +++ b/README.md @@ -319,7 +319,7 @@ To update Testify to the latest version, use `go get -u github.com/stretchr/test Supported go versions ================== -We support the four major Go versions, which are 1.8, 1.9, 1.10, and 1.11 at the moment. +We support the three major Go versions, which are 1.9, 1.10, and 1.11 at the moment. ------