From e8b35c877d11fe007a498fb7a2e23968e0f38798 Mon Sep 17 00:00:00 2001 From: Tom Hudson Date: Thu, 10 Dec 2015 09:51:28 -0500 Subject: [PATCH] Removes Go 1.0 and 1.1 from Travis config --- .travis.yml | 2 -- README.mkd | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cbe9eb7..24edf22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: go go: - - 1.0 - - 1.1 - 1.2 - 1.3 - 1.4 diff --git a/README.mkd b/README.mkd index 2f93e20..322c121 100644 --- a/README.mkd +++ b/README.mkd @@ -1,6 +1,6 @@ # Golang Link Header Parser -Library for parsing HTTP Link headers. +Library for parsing HTTP Link headers. Requires Go 1.2 or higher. Docs can be found on [the GoDoc page](https://godoc.org/github.com/TomNomNom/linkheader). @@ -9,6 +9,8 @@ Docs can be found on [the GoDoc page](https://godoc.org/github.com/TomNomNom/lin ## Basic Example ```go +import "github.com/tomnomnom/linkheader" + header := "; rel=\"next\"," + "; rel=\"last\"" links := linkheader.Parse(header)