Skip to content

Commit 6310d84

Browse files
RJ LohanJohn Tompkins
authored andcommitted
Fixes repo name across the repository (#98)
* Fixes repo name across the repository * Fix one more link, bump version
1 parent c8d1276 commit 6310d84

36 files changed

+64
-64
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/issues), or [recently closed](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/awslabs/cloudformation-cli-go-plugin/issues), or [recently closed](https://github.com/awslabs/cloudformation-cli-go-plugin/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/labels/help%20wanted) issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/cloudformation-cli-go-plugin/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
@@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif
5656

5757
## Licensing
5858

59-
See the [LICENSE](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
59+
See the [LICENSE](https://github.com/awslabs/cloudformation-cli-go-plugin/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6060

6161
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

cfn/callback/callback.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"log"
1313

1414
"github.com/avast/retry-go"
15-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
16-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
15+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
16+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
1717
"github.com/aws/aws-sdk-go/aws"
1818
"github.com/aws/aws-sdk-go/service/cloudformation"
1919
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface"

cfn/callback/callback_notag.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package callback
55
import (
66
"log"
77

8-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
8+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
99
"github.com/aws/aws-sdk-go/aws"
1010
"github.com/aws/aws-sdk-go/service/cloudformation"
1111
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface"

cfn/callback/callback_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"testing"
66

7-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
7+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
88
"github.com/aws/aws-sdk-go/service/cloudformation"
99
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface"
1010
)

cfn/cfn.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77
"log"
88
"time"
99

10-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/callback"
11-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
12-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/credentials"
13-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
14-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
15-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/metrics"
16-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/scheduler"
10+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/callback"
11+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
12+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/credentials"
13+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
14+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
15+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/metrics"
16+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/scheduler"
1717

1818
"github.com/aws/aws-lambda-go/lambda"
1919
"github.com/aws/aws-sdk-go/service/cloudformation"

cfn/cfn_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
13-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/scheduler"
12+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
13+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/scheduler"
1414
"github.com/aws/aws-lambda-go/lambdacontext"
1515
"github.com/aws/aws-sdk-go/aws/session"
1616
)

cfn/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
7+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
88
"github.com/aws/aws-sdk-go/aws/session"
99
)
1010

cfn/encoding/encoding_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"testing"
66

7-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
7+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"
88

99
"github.com/google/go-cmp/cmp"
1010
)

cfn/entry_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
13-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
14-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/metrics"
12+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
13+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
14+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/metrics"
1515
)
1616

1717
func TestMarshalling(t *testing.T) {

cfn/event.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cfn
33
import (
44
"encoding/json"
55

6-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
7-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/credentials"
8-
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
6+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
7+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/credentials"
8+
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"
99
"github.com/aws/aws-sdk-go/aws/session"
1010

1111
"gopkg.in/validator.v2"

0 commit comments

Comments
 (0)