From 206e5626cdb11ac7e1a23c87a43ec9a92f25966a Mon Sep 17 00:00:00 2001 From: Fraser Davidson Date: Sat, 23 Dec 2023 15:26:59 +0000 Subject: [PATCH 1/2] WIP --- CHANGELOG.md | 2 +- MAINTAINERS.md | 4 +--- README.md | 2 +- SUPPORT.md | 4 ++-- azuredevops/repository.go | 2 +- git/external_git/exec.go | 2 +- go.mod | 2 +- 7 files changed, 8 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8544d04..9756802 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Utils Changelog +# Changelog ## 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 From 95fda1c57e64f7239fd0bb535bebe67e8bfc4731 Mon Sep 17 00:00:00 2001 From: Fraser Davidson Date: Sat, 23 Dec 2023 15:28:52 +0000 Subject: [PATCH 2/2] WIP --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9756802..301cd58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.1.0 + +* Renamed from `utils` to `go-utils`. + ## v0.0.10 * Refactor Azure DevOps cross-project approach.