diff --git a/.gitignore b/.gitignore index 6d6e702d..09f3f045 100644 --- a/.gitignore +++ b/.gitignore @@ -66,4 +66,4 @@ pnpm-lock.yaml # release package.json-e session.ts-e - +CHANGELOG.ignore.md \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6be4e0a7..320082b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ You can install any of these versions: `npm install -g codex@version` +## 0.1.2504172351 + +### 🚀 Features + +- Add Nix flake for reproducible development environments (#225) + +### 🐛 Bug Fixes + +- Handle invalid commands (#304) +- Raw-exec-process-group.test improve reliability and error handling (#280) +- Canonicalize the writeable paths used in seatbelt policy (#275) + ## 0.1.2504172304 ### 🚀 Features diff --git a/codex-cli/package-lock.json b/codex-cli/package-lock.json index b42aac33..cd7a7e91 100644 --- a/codex-cli/package-lock.json +++ b/codex-cli/package-lock.json @@ -1,12 +1,12 @@ { "name": "@openai/codex", - "version": "0.1.2504172304", + "version": "0.1.2504172351", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@openai/codex", - "version": "0.1.2504172304", + "version": "0.1.2504172351", "license": "Apache-2.0", "dependencies": { "@inkjs/ui": "^2.0.0", diff --git a/codex-cli/package.json b/codex-cli/package.json index cf8eccdb..f5722a13 100644 --- a/codex-cli/package.json +++ b/codex-cli/package.json @@ -1,6 +1,6 @@ { "name": "@openai/codex", - "version": "0.1.2504172304", + "version": "0.1.2504172351", "license": "Apache-2.0", "bin": { "codex": "bin/codex" @@ -23,7 +23,7 @@ "release:readme": "cp ../README.md ./README.md", "release:version": "TS=$(date +%y%m%d%H%M) && sed -E -i'' -e \"s/\\\"0\\.1\\.[0-9]{10}\\\"/\\\"0.1.${TS}\\\"/g\" package.json src/utils/session.ts", "release:build-and-publish": "npm run build && npm publish", - "release": "npm run release:readme && npm run release:version && npm run release:build-and-publish", + "release": "npm run release:readme && npm run release:version && npm install && npm run release:build-and-publish", "prepare": "husky", "pre-commit": "lint-staged" }, diff --git a/codex-cli/src/utils/session.ts b/codex-cli/src/utils/session.ts index ab647963..35d1873c 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.2504172304"; // Must be in sync with package.json. +export const CLI_VERSION = "0.1.2504172351"; // Must be in sync with package.json. export const ORIGIN = "codex_cli_ts"; export type TerminalChatSession = { diff --git a/package.json b/package.json index 650d4273..d967dc34 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "release": "cd codex-cli && npm run release", "format": "prettier --check *.json *.md .github/workflows/*.yml", "format:fix": "prettier --write *.json *.md .github/workflows/*.yml", - "changelog": "git-cliff --config cliff.toml --output CHANGELOG.md $LAST_RELEASE_TAG..HEAD" + "changelog": "git-cliff --config cliff.toml --output CHANGELOG.ignore.md $LAST_RELEASE_TAG..HEAD" }, "devDependencies": { "git-cliff": "^2.8.0",