bump(version): 0.1.2504220136 (#518)

## `0.1.2504220136`

### 🚀 Features

- Add support for ZDR orgs (#481)
- Include fractional portion of chunk that exceeds stdout/stderr limit
(#497)
This commit is contained in:
Fouad Matin
2025-04-22 01:45:30 -07:00
committed by GitHub
parent 9f5ccbb618
commit 2cb8355968
4 changed files with 10 additions and 3 deletions

View File

@@ -2,6 +2,13 @@
You can install any of these versions: `npm install -g codex@version`
## `0.1.2504220136`
### 🚀 Features
- Add support for ZDR orgs (#481)
- Include fractional portion of chunk that exceeds stdout/stderr limit (#497)
## `0.1.2504211509`
### 🚀 Features

View File

@@ -38,7 +38,7 @@ commit_parsers = [
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
{ message = "^bump", group = "<!-- 6 -->🛳️ Release" },
# Fallback  skip anything that didn't match the above rules.
{ message = ".*", group = "<!-- 10 -->💼 Other", skip = true },
{ message = ".*", group = "<!-- 10 -->💼 Other" },
]
filter_unconventional = false

View File

@@ -1,6 +1,6 @@
{
"name": "@openai/codex",
"version": "0.1.2504211509",
"version": "0.1.2504220136",
"license": "Apache-2.0",
"bin": {
"codex": "bin/codex.js"

View File

@@ -1,4 +1,4 @@
export const CLI_VERSION = "0.1.2504211509"; // Must be in sync with package.json.
export const CLI_VERSION = "0.1.2504220136"; // Must be in sync with package.json.
export const ORIGIN = "codex_cli_ts";
export type TerminalChatSession = {