From 450c4bb78329768ba600cc2a67a1b815e27bd1a7 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Wed, 18 Mar 2026 19:11:00 +0100 Subject: [PATCH 1/2] release: bump to v0.22.4 with git -C support --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- install.sh | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f3a481a..1112d32b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to rtk (Rust Token Killer) will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.22.4](https://github.com/algolia/rtk/compare/v0.22.3...v0.22.4) (2026-03-18) + +### Features + +* **git**: support `-C ` global option for cross-repo commands (PR #5) + ## [0.22.3](https://github.com/algolia/rtk/compare/v0.22.2...v0.22.3) (2026-03-18) This is the first release from the `algolia/rtk` fork. All upstream features are welcome; diff --git a/Cargo.toml b/Cargo.toml index 5fda1aae..ed9400f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtk" -version = "0.22.3" +version = "0.22.4" edition = "2021" authors = ["Patrick Szymkowiak"] description = "Rust Token Killer - High-performance CLI proxy to minimize LLM token consumption" diff --git a/install.sh b/install.sh index 2f32740a..f14a0af6 100644 --- a/install.sh +++ b/install.sh @@ -6,7 +6,7 @@ set -e REPO="algolia/rtk" BINARY_NAME="rtk" -PINNED_VERSION="v0.22.3" +PINNED_VERSION="v0.22.4" INSTALL_DIR="${RTK_INSTALL_DIR:-$HOME/.local/bin}" # Colors From f89894eaeea622f376b079dccb73041019580f55 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Wed, 18 Mar 2026 19:27:15 +0100 Subject: [PATCH 2/2] release: update version refs to 0.22.4 across docs --- ARCHITECTURE.md | 2 +- CLAUDE.md | 4 ++-- Cargo.lock | 2 +- README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 64df4114..13308f5a 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -1483,4 +1483,4 @@ When implementing a new command, consider: **Last Updated**: 2026-02-22 **Architecture Version**: 2.2 -**rtk Version**: 0.22.3 +**rtk Version**: 0.22.4 diff --git a/CLAUDE.md b/CLAUDE.md index 27268f38..6d2cd3e8 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -16,7 +16,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co **Verify correct installation:** ```bash -rtk --version # Should show "rtk 0.22.3" (or newer) +rtk --version # Should show "rtk 0.22.4" (or newer) rtk gain # Should show token savings stats (NOT "command not found") ``` @@ -71,7 +71,7 @@ We do **not** merge upstream wholesale. Instead: ### Version Pinning -- `install.sh` pins to a specific release tag (e.g., `v0.22.3`) +- `install.sh` pins to a specific release tag (e.g., `v0.22.4`) - Pin is updated manually after testing a new upstream sync - `Cargo.toml` version reflects our fork's release, not upstream's diff --git a/Cargo.lock b/Cargo.lock index 1edcf773..dea699e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -581,7 +581,7 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "rtk" -version = "0.22.3" +version = "0.22.4" dependencies = [ "anyhow", "chrono", diff --git a/README.md b/README.md index 690e2b2b..1d834dec 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ curl -fsSL https://raw.githubusercontent.com/algolia/rtk/main/install.sh | sh **How to verify you have the correct rtk:** ```bash -rtk --version # Should show "rtk 0.22.3" +rtk --version # Should show "rtk 0.22.4" rtk gain # Should show token savings stats ```