From 665473a0d8229a557d301bd8c198d393afb3bfc2 Mon Sep 17 00:00:00 2001 From: Nino Khodabandeh Date: Wed, 6 Apr 2016 17:29:11 -0700 Subject: [PATCH] Updated Changes.md and travis.yml - Included the godep migration and vendoring folder into changes.md - Updated travis.yml to deprecate support for golang 1.3 - Added 1.6 and tip run to travis.yml --- .travis.yml | 11 ++++++++--- CHANGES.md | 5 +++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 15fbdbc..9cf8bb7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,14 @@ script: - go test -race -v ./... go: - - 1.3.3 - - 1.4.3 - - 1.5.2 + - 1.4 + - 1.5 + - 1.6 + - tip + +matrix: + allow_failures: + - go: tip install: - go get gopkg.in/fsnotify.v1 diff --git a/CHANGES.md b/CHANGES.md index 3725d1e..56aedb6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # API current (gopkg.in/ActiveState/tail) +## April, 2016 + +* Migrated to godep, as depman is not longer supported +* Introduced golang vendoring feature + ## July, 2015 * Fix inotify watcher leak; remove `Cleanup` (#51)