Skip to content

Commit 17fce38

Browse files
committed
Rename binary to gitraider
1 parent 94ab817 commit 17fce38

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ jobs:
3535
- name: Cargo Build Binary
3636
run: |
3737
cargo build --release
38-
chmod +x target/release/git-raider
38+
chmod +x target/release/gitraider
3939
4040
- name: Optimize Binary with UPX
4141
run: |
42-
upx --best --lzma target/release/git-raider
42+
upx --best --lzma target/release/gitraider
4343
4444
- name: Package Binary
4545
run: |
4646
toolchain=$(rustup toolchain list | awk '{print $1;}')
47-
tar_name="git-raider_${{ github.ref_name }}-$toolchain"
48-
tar -cvzf target/release/$tar_name.tar.gz target/release/git-raider
47+
tar_name="gitraider_${{ github.ref_name }}-$toolchain"
48+
tar -cvzf target/release/$tar_name.tar.gz target/release/gitraider
4949
5050
- name: Release
5151
uses: docker://antonyurchenko/git-release:v5

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.3] - 2023-04-07
9+
10+
## Changed
11+
12+
- Rename binary from `git-raider` to `gitraider`
13+
814
## [0.1.2] - 2023-04-04
915

1016
Test release
@@ -51,6 +57,7 @@ This release marks the first full realization of project's description.
5157

5258
- 'None
5359

60+
[0.1.3]: https://github.com/mbrav/git_raider/compare/0.1.2...0.1.3
5461
[0.1.2]: https://github.com/mbrav/git_raider/compare/0.1.1...0.1.2
5562
[0.1.1]: https://github.com/mbrav/git_raider/compare/0.1.0...0.1.1
5663
[0.1.0]: https://github.com/mbrav/git_raider/compare/0.0.3...0.1.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lto = true # Enable link time optimization
2020
codegen-units = 1 # Maximize size reduction optimizations (takes longer)
2121

2222
[[bin]]
23-
name = "git-raider"
23+
name = "gitraider"
2424
path = "src/main.rs"
2525

2626
[dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You will get the following result showing you a help dialogue:
5353
```text
5454
Mass git repository search, replace and commit tool
5555
56-
Usage: git-raider [OPTIONS]
56+
Usage: gitraider [OPTIONS]
5757
5858
Options:
5959
-p, --path <PATH> Path to repositories [env: REPO_PATH=] [default: ../repos]

0 commit comments

Comments
 (0)