From cf5f1868bc3df74739fc8e06e5c2e93728c5d8f9 Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Thu, 12 Feb 2026 11:27:09 -0800 Subject: [PATCH] ## New Features - Memory files now include the working directory in stored context, improving memory behavior when switching between different project directories. (#11591) ## Bug Fixes - Model resolution now preserves the requested model slug when selecting by prefix, so model references stay stable instead of being rewritten. (#11602) - Developer messages are now excluded from phase-1 memory input, reducing noisy or irrelevant content entering memory. (#11608) - Memory phase processing concurrency was reduced to make consolidation/staging more stable under load. (#11614) ## Chores - Cleaned and simplified the phase-1 memory pipeline code paths. (#11605) - Minor repository maintenance: formatting and test-suite hygiene updates in remote model tests. (#11619) ## Changelog Full Changelog: https://github.com/openai/codex/compare/rust-v0.100.0...rust-v0.101.0 - #11605 chore: drop and clean from phase 1 @jif-oai - #11602 fix(core) model_info preserves slug @dylan-hurd-oai - #11608 exclude developer messages from phase-1 memory input @wendyjiao-openai - #11591 Add cwd to memory files @wendyjiao-openai - #11614 chore: reduce concurrency of memories @jif-oai - #11619 fix: fmt @jif-oai --- codex-rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/Cargo.toml b/codex-rs/Cargo.toml index 8f76c64ed9..bac0171c96 100644 --- a/codex-rs/Cargo.toml +++ b/codex-rs/Cargo.toml @@ -65,7 +65,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.0.0" +version = "0.101.0" # Track the edition for all workspace crates in one place. Individual # crates can still override this value, but keeping it here means new # crates created with `cargo new -w ...` automatically inherit the 2024