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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

*No changes yet.*

## [0.20.0] - 2026-04-27

### Added

- **Codex ChatGPT auth** (#248): new `auth_mode = "codex_chatgpt"` / `--auth-mode codex_chatgpt` path that reuses an existing `codex login` session from `$CODEX_HOME/auth.json` or `~/.codex/auth.json` instead of requiring an `OPENAI_API_KEY`. The provider refreshes Codex OAuth tokens while preserving unknown auth-file fields and routes this mode through the ChatGPT Codex Responses backend.

### Changed

- **Dependency refresh** (#247): bumped `rustls-webpki` from 0.103.10 to 0.103.13.

## [0.19.0] - 2026-04-24

### Added
Expand Down Expand Up @@ -301,7 +311,8 @@ Initial public release.
- **Cross-platform support**: Linux (x86_64, aarch64) and macOS (x86_64, Apple Silicon)
- **Installation methods**: cargo install, Homebrew tap, curl script, prebuilt binaries

[Unreleased]: https://github.com/avala-ai/agent-code/compare/v0.19.0...HEAD
[Unreleased]: https://github.com/avala-ai/agent-code/compare/v0.20.0...HEAD
[0.20.0]: https://github.com/avala-ai/agent-code/compare/v0.19.0...v0.20.0
[0.19.0]: https://github.com/avala-ai/agent-code/compare/v0.18.0...v0.19.0
[0.18.0]: https://github.com/avala-ai/agent-code/compare/v0.17.0...v0.18.0
[0.17.0]: https://github.com/avala-ai/agent-code/compare/v0.16.1...v0.17.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-code"
version = "0.19.0"
version = "0.20.0"
edition = "2024"
description = "An AI-powered coding agent for the terminal, written in pure Rust"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ name = "agent"
path = "src/main.rs"

[dependencies]
agent-code-lib = { path = "../lib", version = "0.19.0" }
agent-code-lib = { path = "../lib", version = "0.20.0" }

# CLI
clap = { version = "4", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/eval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "eval_runner"
path = "src/main.rs"

[dependencies]
agent-code-lib = { path = "../lib", version = "0.19.0" }
agent-code-lib = { path = "../lib", version = "0.20.0" }

# Async runtime
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-code-lib"
version = "0.19.0"
version = "0.20.0"
edition = "2024"
description = "Agent engine library: LLM providers, tools, query loop, memory"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@avala-ai/agent-code",
"version": "0.19.0",
"version": "0.20.0",
"description": "AI coding agent for the terminal. Built in Rust.",
"license": "MIT",
"repository": {
Expand Down
Loading