diff --git a/CHANGELOG.md b/CHANGELOG.md index f8cb0372..a60f38ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ You can install any of these versions: `npm install -g codex@version` +## `0.1.2504221401` + +### 🚀 Features + +- Show actionable errors when api keys are missing (#523) +- Add CLI `--version` flag (#492) + +### 🐛 Bug Fixes + +- Agent loop for ZDR (`disableResponseStorage`) (#543) +- Fix relative `workdir` check for `apply_patch` (#556) +- Minimal mid-stream #429 retry loop using existing back-off (#506) +- Inconsistent usage of base URL and API key (#507) +- Remove requirement for api key for ollama (#546) +- Support `[provider]_BASE_URL` (#542) + ## `0.1.2504220136` ### 🚀 Features diff --git a/codex-cli/package.json b/codex-cli/package.json index d438e2ab..7b852ca3 100644 --- a/codex-cli/package.json +++ b/codex-cli/package.json @@ -1,6 +1,6 @@ { "name": "@openai/codex", - "version": "0.1.2504220136", + "version": "0.1.2504221401", "license": "Apache-2.0", "bin": { "codex": "bin/codex.js" diff --git a/codex-cli/src/utils/session.ts b/codex-cli/src/utils/session.ts index 1697f7ce..c439f490 100644 --- a/codex-cli/src/utils/session.ts +++ b/codex-cli/src/utils/session.ts @@ -1,4 +1,4 @@ -export const CLI_VERSION = "0.1.2504220136"; // Must be in sync with package.json. +export const CLI_VERSION = "0.1.2504221401"; // Must be in sync with package.json. export const ORIGIN = "codex_cli_ts"; export type TerminalChatSession = {