Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <directory>` 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;
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
```

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading