diff --git a/README.rst b/README.rst index c153cd3..fe9e56c 100644 --- a/README.rst +++ b/README.rst @@ -9,4 +9,4 @@ API in Go programs. For more information see the `project homepage`_. -.. _project homepage: https://github.com/juju/gomaasapi +.. _project homepage: https://github.com/juju/gomaasapi/v1 diff --git a/example/live_example.go b/example/live_example.go index 01b9d58..5cb2b32 100644 --- a/example/live_example.go +++ b/example/live_example.go @@ -13,7 +13,7 @@ import ( "fmt" "net/url" - "github.com/juju/gomaasapi" + "github.com/juju/gomaasapi/v1" ) var apiKey string diff --git a/go.mod b/go.mod index c1a762f..6d80817 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/juju/gomaasapi +module github.com/juju/gomaasapi/v1 go 1.16 diff --git a/urlparams_test.go b/urlparams_test.go index bec3e02..8e8b949 100644 --- a/urlparams_test.go +++ b/urlparams_test.go @@ -4,7 +4,7 @@ package gomaasapi_test import ( - "github.com/juju/gomaasapi" + "github.com/juju/gomaasapi/v1" gc "gopkg.in/check.v1" )