From ad0f85fdd68facb70c8238ad6dc9ba3dce36aec8 Mon Sep 17 00:00:00 2001 From: Mohsen Beiranvand Date: Fri, 7 Aug 2026 17:25:59 +0200 Subject: [PATCH 1/2] Drop Intel Mac binary, add Homebrew install instructions Only building aarch64-apple-darwin for macOS now -- Linux x86_64+arm64 still both build. README leads with brew install, source build kept as fallback for platforms without a prebuilt binary. --- .github/workflows/release.yml | 2 -- README.md | 13 +++++++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6863c19..79343cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,8 +69,6 @@ jobs: include: - os: macos-14 target: aarch64-apple-darwin - - os: macos-13 - target: x86_64-apple-darwin - os: ubuntu-24.04-arm target: aarch64-unknown-linux-gnu - os: ubuntu-latest diff --git a/README.md b/README.md index 9404d68..0cda669 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,22 @@ event-sourced, no working-tree files, full history, synced with `push`/`pull` li ## Get Started +**Homebrew** (macOS arm64 / Apple Silicon, Linux arm64+x86_64): + +```sh +brew tap imohsenb/tap +brew install git-task +``` + +**From source** (fallback — any platform, requires a Rust toolchain): + ```sh git clone https://github.com//git-task && cd git-task && ./install.sh # or: cargo install --locked --path . ``` -Installs two binaries from the same codebase — `git-task` (so `git task ...` works) and `gtask` -(a standalone alias, e.g. `gtask new "title"`). Pick whichever fits how you invoke it. +Both install two binaries from the same codebase — `git-task` (so `git task ...` works) and +`gtask` (a standalone alias, e.g. `gtask new "title"`). Pick whichever fits how you invoke it. Then, inside any repo: From b31eeda190817ec29573ff8902e1f52e275f6ed0 Mon Sep 17 00:00:00 2001 From: Mohsen Beiranvand Date: Fri, 7 Aug 2026 17:28:10 +0200 Subject: [PATCH 2/2] Bump version to 1.0.4 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c034585..2b7b6c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "git-task" -version = "1.0.3" +version = "1.0.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 4e2e4e6..7649064 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-task" -version = "1.0.3" +version = "1.0.4" edition = "2021" [lib]