Skip to content

Commit

Permalink
Merge pull request #32 from MattSScott/v2-release
Browse files Browse the repository at this point in the history
update module for v2 release
  • Loading branch information
MattSScott authored Sep 24, 2024
2 parents 1eb6e0e + bbce6ec commit 7a5a08c
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/MattSScott/basePlatformSOMAS
module github.com/MattSScott/basePlatformSOMAS/v2

go 1.20
go 1.23

require github.com/google/uuid v1.3.0
2 changes: 1 addition & 1 deletion internal/testUtils/testUtilsAgent.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync/atomic"
"time"

"github.com/MattSScott/basePlatformSOMAS/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/agent"
)

type ITestBaseAgent interface {
Expand Down
4 changes: 2 additions & 2 deletions internal/testUtils/testUtilsMessage.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"time"

"github.com/MattSScott/basePlatformSOMAS/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/message"
)

type Message1 struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/testUtils/testUtilsServer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"sync"
"time"

"github.com/MattSScott/basePlatformSOMAS/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/pkg/server"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/server"
"github.com/google/uuid"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/agent/agentInterface.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package agent

import (
"github.com/MattSScott/basePlatformSOMAS/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/message"
"github.com/google/uuid"
)

Expand Down
6 changes: 3 additions & 3 deletions pkg/agent/agent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"testing"
"time"

"github.com/MattSScott/basePlatformSOMAS/internal/testUtils"
"github.com/MattSScott/basePlatformSOMAS/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/pkg/server"
"github.com/MattSScott/basePlatformSOMAS/v2/internal/testUtils"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/server"
"github.com/google/uuid"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/agent/baseAgent.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package agent

import (
"github.com/MattSScott/basePlatformSOMAS/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/message"
"github.com/google/uuid"
)

Expand Down
6 changes: 3 additions & 3 deletions pkg/message/message_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"testing"
"time"

"github.com/MattSScott/basePlatformSOMAS/internal/testUtils"
"github.com/MattSScott/basePlatformSOMAS/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/pkg/server"
"github.com/MattSScott/basePlatformSOMAS/v2/internal/testUtils"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/server"
)

func TestMessageCanBeExtended(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/server/baseServer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"time"

"github.com/MattSScott/basePlatformSOMAS/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/pkg/message"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/message"
"github.com/google/uuid"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/server/serverInterface.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package server

import (
"github.com/MattSScott/basePlatformSOMAS/pkg/agent"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/agent"
"github.com/google/uuid"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"testing"
"time"

"github.com/MattSScott/basePlatformSOMAS/internal/testUtils"
"github.com/MattSScott/basePlatformSOMAS/pkg/server"
"github.com/MattSScott/basePlatformSOMAS/v2/internal/testUtils"
"github.com/MattSScott/basePlatformSOMAS/v2/pkg/server"
"github.com/google/uuid"
)

Expand Down

0 comments on commit 7a5a08c

Please sign in to comment.