From 7d2a0afe744fcac7d5c98fa01e7c6dbd6343691d Mon Sep 17 00:00:00 2001 From: Robert Laszczak Date: Tue, 11 Jan 2022 17:55:58 +0100 Subject: [PATCH] Changed go module to v2 --- README.md | 2 +- go.mod | 2 +- pkg/amqp/marshaler_test.go | 2 +- pkg/amqp/pubsub_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cbb28f7..2432a68 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![CircleCI](https://circleci.com/gh/ThreeDotsLabs/watermill-amqp/tree/master.svg?style=svg)](https://circleci.com/gh/ThreeDotsLabs/watermill-amqp/tree/master) -[![Go Report Card](https://goreportcard.com/badge/github.com/ThreeDotsLabs/watermill-amqp)](https://goreportcard.com/report/github.com/ThreeDotsLabs/watermill-amqp) +[![Go Report Card](https://goreportcard.com/badge/github.com/ThreeDotsLabs/watermill-amqp/v2)](https://goreportcard.com/report/github.com/ThreeDotsLabs/watermill-amqp/v2) This is Pub/Sub for the [Watermill](https://watermill.io/) project. diff --git a/go.mod b/go.mod index 143661e..68bd2f2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ThreeDotsLabs/watermill-amqp +module github.com/ThreeDotsLabs/watermill-amqp/v2 go 1.17 diff --git a/pkg/amqp/marshaler_test.go b/pkg/amqp/marshaler_test.go index 4d46468..9b5a594 100644 --- a/pkg/amqp/marshaler_test.go +++ b/pkg/amqp/marshaler_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp" + "github.com/ThreeDotsLabs/watermill-amqp/v2/pkg/amqp" "github.com/ThreeDotsLabs/watermill/message" stdAmqp "github.com/rabbitmq/amqp091-go" "github.com/stretchr/testify/assert" diff --git a/pkg/amqp/pubsub_test.go b/pkg/amqp/pubsub_test.go index 13532b6..4e130e7 100644 --- a/pkg/amqp/pubsub_test.go +++ b/pkg/amqp/pubsub_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/require" "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp" + "github.com/ThreeDotsLabs/watermill-amqp/v2/pkg/amqp" "github.com/ThreeDotsLabs/watermill/message" "github.com/ThreeDotsLabs/watermill/pubsub/tests" )