From fca4692ef18b9411e2790021ff2736c2f23a125d Mon Sep 17 00:00:00 2001 From: Richard Dawe Date: Wed, 16 Oct 2024 17:37:40 +0100 Subject: [PATCH] Change module name to customerio/raven-go --- README.md | 10 +++++----- example/example.go | 2 +- go.mod | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d275910..39e2065 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ event/error logging system. ## Installation ```text -go get github.com/richdawe-cio/raven-go +go get github.com/customerio/raven-go ``` Note: Go 1.22 and newer are supported. Earlier and newer versions may work, but have not been tested with this fork. @@ -39,12 +39,12 @@ Unfortunately this results in a few test failures. Since this fork has minimally ``` --- FAIL: TestFunctionName (0.00s) - stacktrace_test.go:50: incorrect package; got github.com/richdawe-cio/raven-go, want . + stacktrace_test.go:50: incorrect package; got github.com/customerio/raven-go, want . --- FAIL: TestStacktraceFrame (0.00s) - stacktrace_test.go:84: incorrect Module: github.com/richdawe-cio/raven-go + stacktrace_test.go:84: incorrect Module: github.com/customerio/raven-go stacktrace_test.go:87: incorrect Lineno: 18 stacktrace_test.go:90: expected InApp to be true --- FAIL: TestStacktraceErrorsWithStack (0.00s) - stacktrace_test.go:141: incorrect Module: github.com/richdawe-cio/raven-go - stacktrace_test.go:150: incorrect Module: github.com/richdawe-cio/raven-go + stacktrace_test.go:141: incorrect Module: github.com/customerio/raven-go + stacktrace_test.go:150: incorrect Module: github.com/customerio/raven-go ``` diff --git a/example/example.go b/example/example.go index c262817..65f5e74 100644 --- a/example/example.go +++ b/example/example.go @@ -7,7 +7,7 @@ import ( "net/http" "os" - "github.com/richdawe-cio/raven-go" + "github.com/customerio/raven-go" ) func trace() *raven.Stacktrace { diff --git a/go.mod b/go.mod index 6e2079a..7816959 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/richdawe-cio/raven-go +module github.com/customerio/raven-go go 1.22