From 2f1d96e77da217be23ec6fc283dcbf0f9401ac84 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 30 Apr 2025 11:37:11 -0700 Subject: [PATCH 1/2] fix: remove errant eslint-disable so `pnpm run lint` passes again (#756) My bad: introduced in https://github.com/openai/codex/pull/753. --- codex-cli/src/utils/session.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/codex-cli/src/utils/session.ts b/codex-cli/src/utils/session.ts index 0850c3dbfe..19867220fe 100644 --- a/codex-cli/src/utils/session.ts +++ b/codex-cli/src/utils/session.ts @@ -1,7 +1,5 @@ // Node ESM supports JSON imports behind an assertion. TypeScript's // `resolveJsonModule` takes care of the typings. -// -// eslint-disable-next-line @typescript-eslint/consistent-type-imports import pkg from "../../package.json" assert { type: "json" }; // Read the version directly from package.json. From 5f5871714e88e7a449d472c6322b1ffda9664192 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 30 Apr 2025 11:37:27 -0700 Subject: [PATCH 2/2] chore: Rust release, set prerelease:false and version=0.0.2504301132 --- .github/workflows/rust-release.yml | 4 ++-- codex-rs/Cargo.lock | 4 ++-- codex-rs/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index d62cda0880..396a0a3c1d 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -143,10 +143,10 @@ jobs: with: tag_name: ${{ env.RELEASE_TAG }} files: dist/** - # TODO(ragona): I'm going to leave these as prerelease/draft for now. + # TODO(ragona): I'm going to leave these as draft for now. # It gives us 1) clarity that these are not yet a stable version, and # 2) allows a human step to review the release before publishing the draft. - prerelease: true + prerelease: false draft: true - uses: facebook/dotslash-publish-release@v2 diff --git a/codex-rs/Cargo.lock b/codex-rs/Cargo.lock index 4264ab7f3b..1f601caff8 100644 --- a/codex-rs/Cargo.lock +++ b/codex-rs/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "codex-cli" -version = "0.0.2504292236" +version = "0.0.2504301132" dependencies = [ "anyhow", "clap", @@ -523,7 +523,7 @@ dependencies = [ [[package]] name = "codex-exec" -version = "0.0.2504292236" +version = "0.0.2504301132" dependencies = [ "anyhow", "chrono", diff --git a/codex-rs/Cargo.toml b/codex-rs/Cargo.toml index 953f21bd46..13bf7b48c9 100644 --- a/codex-rs/Cargo.toml +++ b/codex-rs/Cargo.toml @@ -11,7 +11,7 @@ members = [ ] [workspace.package] -version = "0.0.2504292236" +version = "0.0.2504301132" [profile.release] lto = "fat"