From 29fb71fac54a8fed30036d164c15483e43d739be Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Thu, 30 May 2019 14:56:22 +0100 Subject: [PATCH 1/3] Drop Go 1.11 from Travis CI --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c5cdc33..d3ea1a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: go go: - - 1.11.x - 1.12.x install: # Fetch dependencies From f0b6f1525bdd7b6eaa6c31afe09ab3b7c290008b Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Thu, 30 May 2019 14:58:22 +0100 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 529ab4d..445c3f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ## Changes since v3.2.0 +- [#168](https://github.com/pusher/outh2_proxy/pull/168) Drop Go 1.11 support in Travis (@JoelSpeed) - [#169](https://github.com/pusher/outh2_proxy/pull/169) Update Alpine to 3.9 (@kskewes) - [#148](https://github.com/pusher/outh2_proxy/pull/148) Implement SessionStore interface within proxy (@JoelSpeed) - [#147](https://github.com/pusher/outh2_proxy/pull/147) Add SessionStore interfaces and initial implementation (@JoelSpeed) From 006322562dc55579bb9b36cc92cb72a31775fbd7 Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Mon, 3 Jun 2019 14:58:39 +0100 Subject: [PATCH 3/3] Bump go version in configure to check for go 1.12 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 24790ab..fa80a9f 100755 --- a/configure +++ b/configure @@ -81,7 +81,7 @@ check_for() { check_go_version() { echo -n "Checking go version... " GO_VERSION=$(${tools[go]} version | ${tools[awk]} '{where = match($0, /[0-9]\.[0-9]+\.[0-9]*/); if (where != 0) print substr($0, RSTART, RLENGTH)}') - vercomp $GO_VERSION 1.11 + vercomp $GO_VERSION 1.12 case $? in 0) ;& 1) @@ -91,7 +91,7 @@ check_go_version() { ;; 2) printf "${RED}" - echo "$GO_VERSION < 1.11" + echo "$GO_VERSION < 1.12" exit 1 ;; esac