From 8e35cfec8ebe682613f434670adeeb038a73a1c9 Mon Sep 17 00:00:00 2001 From: Robert Rossmann Date: Wed, 21 Feb 2024 09:40:02 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20move=20to=20organisation=20account=20?= =?UTF-8?q?=F0=9F=9A=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yaml | 2 +- CODEOWNERS | 1 + LICENSE | 2 +- background_test.go | 2 +- go.mod | 2 +- readme.md | 6 +++--- 6 files changed, 8 insertions(+), 7 deletions(-) create mode 100644 CODEOWNERS diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 695b52f..1275feb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,6 +18,6 @@ jobs: - run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: go list -m github.com/robertrossmann/background@$(git describe --tags --abbrev=0) + - run: go list -m go.strv.io/background@$(git describe --tags --abbrev=0) env: GOPROXY: proxy.golang.org diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..fc21421 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @robertrossmann diff --git a/LICENSE b/LICENSE index 0da2635..d8bdfc6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Robert Rossmann +Copyright (c) 2024 STRV Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/background_test.go b/background_test.go index 80fdf0e..ded37e4 100644 --- a/background_test.go +++ b/background_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" - "github.com/robertrossmann/background" "github.com/stretchr/testify/assert" + "go.strv.io/background" ) func Test_New(t *testing.T) { diff --git a/go.mod b/go.mod index 6e1f1bf..40f09ff 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/robertrossmann/background +module go.strv.io/background go 1.22.0 diff --git a/readme.md b/readme.md index 40667d7..8827a41 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# `github.com/robertrossmann/background` +# `go.strv.io/background` > A package that keeps track of goroutines and allows you to wait for them to finish when it's time to shut down your application. @@ -13,7 +13,7 @@ This library makes that management process easier to manage and adds some extra ## Installation ```sh -go get github.com/robertrossmann/background +go get go.strv.io/background ``` ## Usage @@ -24,7 +24,7 @@ package main import ( "context" - "github.com/robertrossmann/background" + "go.strv.io/background" ) type BackgroundMetadata string