From 551e5e4c55d9675e8175581cfe4eb8d07132fa88 Mon Sep 17 00:00:00 2001 From: Stephen Pinkerton Date: Fri, 31 May 2019 15:04:24 -0700 Subject: [PATCH] Update repo name to datadog-lambda-go --- .github/pull_request_template.md | 2 +- CONTRIBUTING.md | 4 ++-- NOTICE | 2 +- ddlambda.go | 6 +++--- go.mod | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 996b03d4..44ec11b1 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,4 @@ -*Note: Please remember to review the [contribution guidelines](https://github.com/DataDog/dd-lambda-go/blob/master/CONTRIBUTING.md) +*Note: Please remember to review the [contribution guidelines](https://github.com/DataDog/datadog-lambda-go/blob/master/CONTRIBUTING.md) if you have not yet done so.* ### What does this PR do? diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bef316a9..6543ea20 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ We love pull requests. Here's a quick guide. Fork, then clone: ```bash -git clone git@github.com:your-username/dd-lambda-go.git +git clone git@github.com:your-username/datadog-lambda-go.git ``` Make your change, update tests and ensure the tests pass: @@ -16,6 +16,6 @@ go test ./... Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/your-username/dd-lambda-go/compare/DataDog:master...master +[pr]: https://github.com/your-username/datadog-lambda-go/compare/DataDog:master...master At this point you're waiting on us. We may suggest some changes or improvements or alternatives. diff --git a/NOTICE b/NOTICE index 5844b121..e5b59f6f 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ -Datadog dd-lambda-go +Datadog datadog-lambda-go Copyright 2019 Datadog, Inc. This product includes software developed at Datadog (https://www.datadoghq.com/). \ No newline at end of file diff --git a/ddlambda.go b/ddlambda.go index f65d66cf..69e54a94 100644 --- a/ddlambda.go +++ b/ddlambda.go @@ -16,9 +16,9 @@ import ( "runtime" "time" - "github.com/DataDog/dd-lambda-go/internal/metrics" - "github.com/DataDog/dd-lambda-go/internal/trace" - "github.com/DataDog/dd-lambda-go/internal/wrapper" + "github.com/DataDog/datadog-lambda-go/internal/metrics" + "github.com/DataDog/datadog-lambda-go/internal/trace" + "github.com/DataDog/datadog-lambda-go/internal/wrapper" ) type ( diff --git a/go.mod b/go.mod index f11c2895..5d66743e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/DataDog/dd-lambda-go +module github.com/DataDog/datadog-lambda-go go 1.12