From dc618f62b5de37e9bcd6f7a68cf392cb0049796a Mon Sep 17 00:00:00 2001 From: Chris O'Hara Date: Fri, 3 May 2024 13:48:20 +1000 Subject: [PATCH 1/3] Rename org in goreleaser config --- .goreleaser.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 29239c1..d2e90e0 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -20,7 +20,7 @@ builds: release: github: - owner: stealthrocket + owner: dispatchrun name: dispatch draft: false prerelease: auto @@ -30,7 +30,7 @@ changelog: brews: - name: dispatch - url_template: "https://github.com/stealthrocket/dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}" + url_template: "https://github.com/dispatchrun/dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}" commit_author: name: stealthrocket-bot @@ -50,7 +50,7 @@ brews: system "#{bin}/dispatch --version" repository: - owner: stealthrocket + owner: dispatchrun name: homebrew-dispatch branch: main token: "{{ .Env.GH_TOKEN_HOMEBREW_DISPATCH }}" From a7f13996d6c5c8a096db442dd34b29f075d26905 Mon Sep 17 00:00:00 2001 From: Chris O'Hara Date: Fri, 3 May 2024 13:49:41 +1000 Subject: [PATCH 2/3] Rename module --- go.mod | 4 ++-- main.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 6f177bb..c8b443d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/stealthrocket/dispatch +module github.com/dispatchrun/dispatch go 1.22.0 @@ -8,6 +8,7 @@ require ( github.com/charmbracelet/bubbletea v0.25.0 github.com/charmbracelet/lipgloss v0.9.1 github.com/google/uuid v1.6.0 + github.com/muesli/reflow v0.3.0 github.com/pelletier/go-toml/v2 v2.2.0 github.com/spf13/cobra v1.8.0 golang.org/x/term v0.19.0 @@ -25,7 +26,6 @@ require ( github.com/mattn/go-runewidth v0.0.15 // indirect github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect github.com/muesli/cancelreader v0.2.2 // indirect - github.com/muesli/reflow v0.3.0 // indirect github.com/muesli/termenv v0.15.2 // indirect github.com/rivo/uniseg v0.4.6 // indirect github.com/spf13/pflag v1.0.5 // indirect diff --git a/main.go b/main.go index 8a16d3e..3694f67 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/stealthrocket/dispatch/cli" + "github.com/dispatchrun/dispatch/cli" ) func main() { From 42cfe807fb12230fdfb13a718df175a258cd9dfb Mon Sep 17 00:00:00 2001 From: Chris O'Hara Date: Fri, 3 May 2024 13:49:54 +1000 Subject: [PATCH 3/3] Update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a65a91f..ed9d577 100644 --- a/README.md +++ b/README.md @@ -9,18 +9,18 @@ Install with Homebrew on macOS: ```console -brew tap stealthrocket/dispatch +brew tap dispatchrun/dispatch brew install dispatch ``` Install with Go: ```console -go install github.com/stealthrocket/dispatch@latest +go install github.com/dispatchrun/dispatch@latest ``` Alternatively, you can download the latest `dispatch` binary from the -[Releases](https://github.com/stealthrocket/dispatch/releases) page. +[Releases](https://github.com/dispatchrun/dispatch/releases) page. ### Create an Account