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)