Skip to content

Commit

Permalink
feat: move to organisation account 🚚
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Feb 21, 2024
1 parent 00dcab7 commit 8e35cfe
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @robertrossmann
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion background_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
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/robertrossmann/background
module go.strv.io/background

go 1.22.0

Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand All @@ -24,7 +24,7 @@ package main
import (
"context"

"github.com/robertrossmann/background"
"go.strv.io/background"
)

type BackgroundMetadata string
Expand Down

0 comments on commit 8e35cfe

Please sign in to comment.