Skip to content

Commit 28728dd

Browse files
committed
chore: release v0.2.1 with corrected CI configurations
1 parent 7105c8b commit 28728dd

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
cp subject.exe cs_input.exe
5656
5757
echo "--> Running Rust Implementation"
58-
../target/release/gpupatch rust_input.exe rust_output.exe
58+
../target/release/gpupatch-cli rust_input.exe rust_output.exe
5959
6060
echo "--> Running Reference C# Implementation"
6161
# We pass the filename first to mirror the C# tool's argument bug correctly for parity
@@ -67,7 +67,7 @@ jobs:
6767
# Let's use a standardized filename so the embedded string remains exactly equal!
6868
6969
cp subject.exe target.exe
70-
../target/release/gpupatch target.exe final_rust.exe
70+
../target/release/gpupatch-cli target.exe final_rust.exe
7171
7272
cp subject.exe target.exe
7373
dotnet exec ${{ env.TOOL_DLL }} target.exe --enable
@@ -91,7 +91,7 @@ jobs:
9191
9292
# Rust side
9393
cp electron.exe target_electron.exe
94-
../target/release/gpupatch target_electron.exe rust_electron.exe
94+
../target/release/gpupatch-cli target_electron.exe rust_electron.exe
9595
9696
# C# Side (Restoring target path so names match)
9797
cp electron.exe target_electron.exe

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ jobs:
1919
include:
2020
- os: windows-latest
2121
target: x86_64-pc-windows-msvc
22-
artifact_name: gpupatch.exe
22+
artifact_name: gpupatch-cli.exe
2323
asset_name: gpupatch-windows-amd64.exe
2424
- os: ubuntu-latest
2525
target: x86_64-unknown-linux-gnu
26-
artifact_name: gpupatch
26+
artifact_name: gpupatch-cli
2727
asset_name: gpupatch-linux-amd64
2828
- os: macos-latest
2929
target: x86_64-apple-darwin
30-
artifact_name: gpupatch
30+
artifact_name: gpupatch-cli
3131
asset_name: gpupatch-macos-amd64
3232
- os: macos-latest
3333
target: aarch64-apple-darwin
34-
artifact_name: gpupatch
34+
artifact_name: gpupatch-cli
3535
asset_name: gpupatch-macos-arm64
3636

3737
steps:
@@ -53,8 +53,8 @@ jobs:
5353
run: |
5454
mkdir staging
5555
# Define binaries
56-
CLI_BIN="gpupatch"
57-
GUI_BIN="companion"
56+
CLI_BIN="gpupatch-cli"
57+
GUI_BIN="gpupatch-gui"
5858
EXT=""
5959
if [ "${{ matrix.os }}" = "windows-latest" ]; then
6060
EXT=".exe"

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gpupatch-cli"
3-
version = "0.1.3"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "A console utility for patching GPU-related binaries or configurations."
66
license = "FSL-1.1-MIT"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gpupatch-core"
3-
version = "0.1.3"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "A utility library for patching GPU-related binaries or configurations."
66
license = "FSL-1.1-MIT"

gui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gpupatch-gui"
3-
version = "0.1.0"
3+
version = "0.2.1"
44
edition = "2024"
55

66
[[bin]]

0 commit comments

Comments
 (0)