Skip to content

Commit 609018f

Browse files
committed
fix: update author username
1 parent c4b1e70 commit 609018f

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2021"
55
license = "MIT"
66
authors = ["Nikita Revenco"]
77
description = "A tool which makes it easy to declaratively manage personal forks by automatically merging pull requests"
8-
repository = "https://github.com/NikitaRevenco/patchy"
9-
homepage = "https://github.com/NikitaRevenco/patchy"
8+
repository = "https://github.com/nik-rev/patchy"
9+
homepage = "https://github.com/nik-rev/patchy"
1010

1111
[[bin]]
1212
name = "patchy"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ Install the binary directly into your system, available for macOS and Linux.
148148
Recommended for Linux users.
149149

150150
```bash
151-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/NikitaRevenco/patchy/releases/latest/download/patchy-installer.sh | sh
151+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/nik-rev/patchy/releases/latest/download/patchy-installer.sh | sh
152152
```
153153

154154
### Homebrew
155155

156156
Recommended for macOS users.
157157

158158
```bash
159-
brew install NikitaRevenco/tap/patchy-bin
159+
brew install nik-rev/tap/patchy-bin
160160
```
161161

162162
### Cargo
@@ -170,13 +170,13 @@ cargo install patchy-bin
170170
Recommended for Windows users.
171171

172172
```powershell
173-
powershell -ExecutionPolicy ByPass -c "irm https://github.com/NikitaRevenco/patchy/releases/latest/download/patchy-installer.ps1 | iex"
173+
powershell -ExecutionPolicy ByPass -c "irm https://github.com/nik-rev/patchy/releases/latest/download/patchy-installer.ps1 | iex"
174174
```
175175

176176
### Nix
177177

178178
```bash
179-
nix profile install github:NikitaRevenco/patchy/main
179+
nix profile install github:nik-rev/patchy/main
180180
```
181181

182182
<details>

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ci = "github"
1010
# The installers to generate for each app
1111
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
1212
# A GitHub repo to push Homebrew formulas to
13-
tap = "NikitaRevenco/homebrew-tap"
13+
tap = "nik-rev/homebrew-tap"
1414
# Target platforms to build apps for (Rust target-triple syntax)
1515
targets = [
1616
"aarch64-apple-darwin",

src/commands/help.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub static VERSION_FLAG: Flag<'static> = Flag {
4040
pub fn help(command: Option<&str>) -> anyhow::Result<()> {
4141
let author = "Nikita Revenco ".italic();
4242
let less_than = "<".bright_black().italic();
43-
let email = "pm@nikitarevenco.com".italic();
43+
let email = "pm@nikrev.com".italic();
4444
let greater_than = ">".bright_black().italic();
4545
let app_name = APP_NAME.bright_blue();
4646
let flags_label = "[<flags>]".bright_magenta();

src/commands/run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub async fn run(args: &CommandArgs) -> anyhow::Result<()> {
9393
- "helix-editor/helix"
9494
- "microsoft/vscode"
9595
96-
For more information see this guide: https://github.com/NikitaRevenco/patchy/blob/main/README.md""#
96+
For more information see this guide: https://github.com/nik-rev/patchy/blob/main/README.md""#
9797
));
9898
}
9999

@@ -130,7 +130,7 @@ pub async fn run(args: &CommandArgs) -> anyhow::Result<()> {
130130
"You haven't specified any pull requests to fetch in your config, {}",
131131
display_link(
132132
"see the instructions on how to configure patchy.",
133-
"https://github.com/NikitaRevenco/patchy?tab=readme-ov-file#config"
133+
"https://github.com/nik-rev/patchy?tab=readme-ov-file#config"
134134
)
135135
)
136136
} else {

src/git_commands.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub async fn merge_pull_request(
214214

215215
let support_url = display_link(
216216
"Merge conflicts (github)",
217-
"https://github.com/NikitaRevenco/patchy?tab=readme-ov-file#merge-conflicts",
217+
"https://github.com/nik-rev/patchy?tab=readme-ov-file#merge-conflicts",
218218
)
219219
.bright_blue();
220220

wix/main.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
<!--<Icon Id='ProductICO' SourceFile='wix\Product.ico'/>-->
174174
<!--<Property Id='ARPPRODUCTICON' Value='ProductICO' />-->
175175

176-
<Property Id='ARPHELPLINK' Value='https://github.com/NikitaRevenco/patchy'/>
176+
<Property Id='ARPHELPLINK' Value='https://github.com/nik-rev/patchy'/>
177177

178178
<UI>
179179
<UIRef Id='WixUI_FeatureTree'/>

0 commit comments

Comments
 (0)