From 54679ff550c94c970923d0aa4616065fa1314a35 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Fri, 17 Feb 2017 05:05:55 +0200 Subject: [PATCH] Travis go 1.8 Former-commit-id: 6cec1776862e3b8e753e13afa00341182ea3abf9 --- .travis.yml | 1 + response_writer.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index c5f03596..a647cd48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,5 +2,6 @@ language: go go: - go1.7 + - go1.8 go_import_path: gopkg.in/kataras/iris.v6 diff --git a/response_writer.go b/response_writer.go index 42b2ec33..df9f7698 100644 --- a/response_writer.go +++ b/response_writer.go @@ -61,6 +61,8 @@ type ResponseWriter interface { http.Flusher http.Hijacker http.CloseNotifier + // breaks go 1.7 as well as the *PushOptions. + // New users should upgrade to 1.8 if they want to use Iris. http.Pusher Writef(format string, a ...interface{}) (n int, err error)