Skip to content

Commit 2cb8355

Browse files
authored
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)
1 parent 9f5ccbb commit 2cb8355

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
You can install any of these versions: `npm install -g codex@version`
44

5+
## `0.1.2504220136`
6+
7+
### 🚀 Features
8+
9+
- Add support for ZDR orgs (#481)
10+
- Include fractional portion of chunk that exceeds stdout/stderr limit (#497)
11+
512
## `0.1.2504211509`
613

714
### 🚀 Features

cliff.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ commit_parsers = [
3838
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
3939
{ message = "^bump", group = "<!-- 6 -->🛳️ Release" },
4040
# Fallback – skip anything that didn't match the above rules.
41-
{ message = ".*", group = "<!-- 10 -->💼 Other", skip = true },
41+
{ message = ".*", group = "<!-- 10 -->💼 Other" },
4242
]
4343

4444
filter_unconventional = false

codex-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openai/codex",
3-
"version": "0.1.2504211509",
3+
"version": "0.1.2504220136",
44
"license": "Apache-2.0",
55
"bin": {
66
"codex": "bin/codex.js"

codex-cli/src/utils/session.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const CLI_VERSION = "0.1.2504211509"; // Must be in sync with package.json.
1+
export const CLI_VERSION = "0.1.2504220136"; // Must be in sync with package.json.
22
export const ORIGIN = "codex_cli_ts";
33

44
export type TerminalChatSession = {

0 commit comments

Comments
 (0)