File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
1016Test 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
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ lto = true # Enable link time optimization
2020codegen-units = 1 # Maximize size reduction optimizations (takes longer)
2121
2222[[bin ]]
23- name = " git-raider "
23+ name = " gitraider "
2424path = " src/main.rs"
2525
2626[dependencies ]
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ You will get the following result showing you a help dialogue:
5353``` text
5454Mass git repository search, replace and commit tool
5555
56- Usage: git-raider [OPTIONS]
56+ Usage: gitraider [OPTIONS]
5757
5858Options:
5959 -p, --path <PATH> Path to repositories [env: REPO_PATH=] [default: ../repos]
You can’t perform that action at this time.
0 commit comments