diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..3f715af
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,21 @@
+language: go
+go:
+  - 1.13.1
+  - tip
+matrix:
+  allow_failures:
+    - go: tip
+
+notifications:
+  email:
+    recipients: dean.karn@gmail.com
+    on_success: change
+    on_failure: always
+
+# Only clone the most recent commit.
+git:
+  depth: 1
+
+script:
+  - go test -v -race ./...
+
diff --git a/README.md b/README.md
index 6e40ab3..7f0fc71 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
 Package assert
 ==============
 
-[![Build Status](https://semaphoreci.com/api/v1/projects/d5e4f510-5e1e-48d9-b38b-f447f270a057/488336/badge.svg)](https://semaphoreci.com/joeybloggs/assert)
-[![GoDoc](https://godoc.org/gopkg.in/go-playground/assert.v1?status.svg)](https://godoc.org/gopkg.in/go-playground/assert.v1)
+[![Build Status](https://travis-ci.org/go-playground/assert.svg?branch=master)](https://travis-ci.org/go-playground/assert)
+[![GoDoc](https://godoc.org/github.com/go-playground/assert?status.svg)](https://godoc.org/gopkg.in/go-playground/assert.v1)
 
 Package assert is a Basic Assertion library used along side native go testing
 
@@ -11,20 +11,16 @@ Installation
 
 Use go get.
 
-	go get gopkg.in/go-playground/assert.v1
+	go get github.com/go-playground/assert
 
-or to update
+Then import the assert package into your own code.
 
-	go get -u gopkg.in/go-playground/assert.v1
-
-Then import the validator package into your own code.
-
-	import . "gopkg.in/go-playground/assert.v1"
+	import . "github.com/go-playground/assert/v2"
 
 Usage and documentation
 ------
 
-Please see http://godoc.org/gopkg.in/go-playground/assert.v1 for detailed usage docs.
+Please see http://godoc.org/github.com/go-playground/assert for detailed usage docs.
 
 ##### Example:
 ```go
@@ -33,7 +29,7 @@ package whatever
 import (
 	"errors"
 	"testing"
-	. "gopkg.in/go-playground/assert.v1"
+	. "github.com/go-playground/assert/v2"
 )
 
 func AssertCustomErrorHandler(t *testing.T, errs map[string]string, key, expected string) {
@@ -74,13 +70,7 @@ func TestEqual(t *testing.T) {
 
 How to Contribute
 ------
-
-There will always be a development branch for each version i.e. `v1-development`. In order to contribute, 
-please make your pull requests against those branches.
-
-If the changes being proposed or requested are breaking changes, please create an issue, for discussion 
-or create a pull request against the highest development branch for example this package has a 
-v1 and v1-development branch however, there will also be a v2-development brach even though v2 doesn't exist yet.
+Make a PR.
 
 I strongly encourage everyone whom creates a usefull custom assertion function to contribute them and
 help make this package even better.
diff --git a/debian/changelog b/debian/changelog
index b1403da..139c15f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+golang-gopkg-go-playground-assert.v1 (2.0.1-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Tue, 15 Mar 2022 04:12:37 -0000
+
 golang-gopkg-go-playground-assert.v1 (1.2.1-2) unstable; urgency=medium
 
   [ Alexandre Viau ]
diff --git a/doc.go b/doc.go
index 896f94a..3e2f1c2 100644
--- a/doc.go
+++ b/doc.go
@@ -8,7 +8,7 @@ validations.
 	import (
 		"errors"
 		"testing"
-		. "gopkg.in/go-playground/assert.v1"
+		. "github.com/go-playground/assert.v1"
 	)
 
 	func AssertCustomErrorHandler(t *testing.T, errs map[string]string, key, expected string) {
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..52d4090
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module github.com/go-playground/assert/v2
+
+go 1.13