diff --git a/CHANGELOG.md b/CHANGELOG.md index 8544d04..301cd58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# Utils Changelog +# Changelog + +## v0.1.0 + +* Renamed from `utils` to `go-utils`. ## v0.0.10 diff --git a/MAINTAINERS.md b/MAINTAINERS.md index f1d5b0f..a5b6cc1 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -1,6 +1,4 @@ -# Utils Maintainers - -## Maintainers +# Maintainers | Maintainer | GitHub ID | Affiliation | | --------------- | --------- | ----------- | diff --git a/README.md b/README.md index 06588bf..e7acbe2 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# utils +# go-utils diff --git a/SUPPORT.md b/SUPPORT.md index 175c3f8..1c51139 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -1,3 +1,3 @@ -# Utils Support +# Support -Thanks for trying out utils! We're setting up a Slack channel, but please raise a GitHub issue in the meantime if you've got any questions. +Thanks for trying out go-utils! We're setting up a Slack channel, but please raise a GitHub issue in the meantime if you've got any questions. diff --git a/azuredevops/repository.go b/azuredevops/repository.go index 0d2a4af..7963c9a 100644 --- a/azuredevops/repository.go +++ b/azuredevops/repository.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - egit "github.com/frontierdigital/utils/git/external_git" + egit "github.com/gofrontier-com/go-utils/git/external_git" "github.com/microsoft/azure-devops-go-api/azuredevops/git" "golang.org/x/exp/slices" ) diff --git a/git/external_git/exec.go b/git/external_git/exec.go index 5061bc1..a54011a 100644 --- a/git/external_git/exec.go +++ b/git/external_git/exec.go @@ -3,7 +3,7 @@ package external_git import ( "fmt" - exec "github.com/frontierdigital/utils/exec" + exec "github.com/gofrontier-com/go-utils/exec" ) // Exec executes git commands in the context of the repository diff --git a/go.mod b/go.mod index c551b7b..b7adda6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/frontierdigital/utils +module github.com/gofrontier-com/go-utils go 1.20