diff --git a/README.md b/README.md index f1c1049..52c8ac5 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,10 @@ Package heredoc provides the here-document with keeping indent. -## Install - -```console -$ go get github.com/MakeNowJust/heredoc -``` - ## Import ```go -import "github.com/MakeNowJust/heredoc" +import "github.com/MakeNowJust/heredoc/v2" ``` ## Example @@ -28,7 +22,7 @@ package main import ( "fmt" - "github.com/MakeNowJust/heredoc" + "github.com/MakeNowJust/heredoc/v2" ) func main() { diff --git a/go.mod b/go.mod index 52b0dfd..1203ec5 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/MakeNowJust/heredoc +module github.com/MakeNowJust/heredoc/v2 go 1.12