From 131ec1e531c79c79461bab1de117dd1904847a22 Mon Sep 17 00:00:00 2001 From: Dmitry Chestnykh Date: Wed, 21 Jan 2015 09:48:39 +0100 Subject: [PATCH] Drop support for Go 1.0 and 1.1. Add Travis testing on 1.4. --- .travis.yml | 3 +-- uniuri.go | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 825dc3f..ae719be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: go go: - - 1.0 - - 1.1 - 1.2 - 1.3 + - 1.4 - tip diff --git a/uniuri.go b/uniuri.go index e9fa604..bb9eab9 100644 --- a/uniuri.go +++ b/uniuri.go @@ -78,5 +78,4 @@ func NewLenChars(length int, chars []byte) string { } } } - panic("unreachable") }