Skip to content

Commit 00ba3bc

Browse files
authored
Merge pull request #39 from dispatchrun/rename-org
Rename GitHub organization
2 parents f1e8d5c + 42cfe80 commit 00ba3bc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.goreleaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ builds:
2020

2121
release:
2222
github:
23-
owner: stealthrocket
23+
owner: dispatchrun
2424
name: dispatch
2525
draft: false
2626
prerelease: auto
@@ -30,7 +30,7 @@ changelog:
3030

3131
brews:
3232
- name: dispatch
33-
url_template: "https://github.com/stealthrocket/dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
33+
url_template: "https://github.com/dispatchrun/dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
3434

3535
commit_author:
3636
name: stealthrocket-bot
@@ -50,7 +50,7 @@ brews:
5050
system "#{bin}/dispatch --version"
5151
5252
repository:
53-
owner: stealthrocket
53+
owner: dispatchrun
5454
name: homebrew-dispatch
5555
branch: main
5656
token: "{{ .Env.GH_TOKEN_HOMEBREW_DISPATCH }}"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
Install with Homebrew on macOS:
1010

1111
```console
12-
brew tap stealthrocket/dispatch
12+
brew tap dispatchrun/dispatch
1313
brew install dispatch
1414
```
1515

1616
Install with Go:
1717

1818
```console
19-
go install github.com/stealthrocket/dispatch@latest
19+
go install github.com/dispatchrun/dispatch@latest
2020
```
2121

2222
Alternatively, you can download the latest `dispatch` binary from the
23-
[Releases](https://github.com/stealthrocket/dispatch/releases) page.
23+
[Releases](https://github.com/dispatchrun/dispatch/releases) page.
2424

2525
### Create an Account
2626

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/stealthrocket/dispatch
1+
module github.com/dispatchrun/dispatch
22

33
go 1.22.0
44

@@ -8,6 +8,7 @@ require (
88
github.com/charmbracelet/bubbletea v0.25.0
99
github.com/charmbracelet/lipgloss v0.9.1
1010
github.com/google/uuid v1.6.0
11+
github.com/muesli/reflow v0.3.0
1112
github.com/pelletier/go-toml/v2 v2.2.0
1213
github.com/spf13/cobra v1.8.0
1314
golang.org/x/term v0.19.0
@@ -25,7 +26,6 @@ require (
2526
github.com/mattn/go-runewidth v0.0.15 // indirect
2627
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
2728
github.com/muesli/cancelreader v0.2.2 // indirect
28-
github.com/muesli/reflow v0.3.0 // indirect
2929
github.com/muesli/termenv v0.15.2 // indirect
3030
github.com/rivo/uniseg v0.4.6 // indirect
3131
github.com/spf13/pflag v1.0.5 // indirect

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"github.com/stealthrocket/dispatch/cli"
6+
"github.com/dispatchrun/dispatch/cli"
77
)
88

99
func main() {

0 commit comments

Comments
 (0)