Skip to content

Commit

Permalink
Updating go.mod to include /v2 (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
wlewis4321 authored Jul 8, 2024
1 parent 9baae96 commit fe3edeb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/aws/aws-secretsmanager-caching-go
module github.com/aws/aws-secretsmanager-caching-go/v2

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion scintegtests/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/secretsmanager"
"github.com/aws/aws-secretsmanager-caching-go/secretcache"
"github.com/aws/aws-secretsmanager-caching-go/v2/secretcache"
"github.com/aws/smithy-go"
)

Expand Down
3 changes: 2 additions & 1 deletion secretcache/cacheHook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ package secretcache_test

import (
"bytes"
"github.com/aws/aws-secretsmanager-caching-go/secretcache"
"testing"

"github.com/aws/aws-secretsmanager-caching-go/v2/secretcache"
)

type DummyCacheHook struct {
Expand Down
2 changes: 1 addition & 1 deletion secretcache/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"testing"
"time"

"github.com/aws/aws-secretsmanager-caching-go/secretcache"
"github.com/aws/aws-secretsmanager-caching-go/v2/secretcache"

"github.com/aws/aws-sdk-go-v2/service/secretsmanager"
)
Expand Down
2 changes: 1 addition & 1 deletion secretcache/mockClient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/secretsmanager"
"github.com/aws/aws-secretsmanager-caching-go/secretcache"
"github.com/aws/aws-secretsmanager-caching-go/v2/secretcache"
)

// A struct to be used in unit tests as a mock Client
Expand Down

0 comments on commit fe3edeb

Please sign in to comment.