diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..a915e8c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 53d92ce..547b22d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [0.1.1](https://github.com/jatmn/Codex-warp/compare/v0.1.0...v0.1.1) (2026-09-05) + + +### Bug Fixes + +* **continue_guard:** keep long multi-agent sessions auto-continuing ([#118](https://github.com/jatmn/Codex-warp/issues/118)) ([1a39847](https://github.com/jatmn/Codex-warp/commit/1a39847fd716a60f6d7cce2ce72fcfc8c0f0e862)) +* **models:** honor WebUI disable for colliding cross-provider slugs ([#117](https://github.com/jatmn/Codex-warp/issues/117)) ([7f149d4](https://github.com/jatmn/Codex-warp/commit/7f149d4c24259fa446a7e65fab1530beab91c217)) +* **provider:** identify OpenCode Go sessions ([#121](https://github.com/jatmn/Codex-warp/issues/121)) ([d81deaa](https://github.com/jatmn/Codex-warp/commit/d81deaad5b307db3009d9f6560be29a92d92d77a)) +* **release:** include maintenance notes without triggering releases ([#125](https://github.com/jatmn/Codex-warp/issues/125)) ([e837600](https://github.com/jatmn/Codex-warp/commit/e837600e9576080527d45ffb2681e5c6bb356ad8)) +* **security:** confine docs checker path.resolve to the repo base ([#120](https://github.com/jatmn/Codex-warp/issues/120)) ([12de5b1](https://github.com/jatmn/Codex-warp/commit/12de5b1598bea7f62b6d79021f959fb08a92325c)) +* **security:** harden documentation path confinement ([#115](https://github.com/jatmn/Codex-warp/issues/115)) ([26431ce](https://github.com/jatmn/Codex-warp/commit/26431cefd421e3c31c07382c8da3741cf578ae2e)) + + +### Documentation + +* document live releases and commit title templates ([#114](https://github.com/jatmn/Codex-warp/issues/114)) ([9a0794c](https://github.com/jatmn/Codex-warp/commit/9a0794ce93acc5c9022e192f52999271a72413f1)) + + +### Build System + +* **deps:** Bump crate-ci/typos from 1.49.0 to 1.50.1 ([#124](https://github.com/jatmn/Codex-warp/issues/124)) ([fdef744](https://github.com/jatmn/Codex-warp/commit/fdef744542eeeb80a189929d8f2d0a0e43f9d34f)) +* **deps:** Bump taiki-e/install-action from 2.86.8 to 2.87.4 ([#123](https://github.com/jatmn/Codex-warp/issues/123)) ([010133c](https://github.com/jatmn/Codex-warp/commit/010133c914229c2688877a216a89c1052ffd7b39)) +* **deps:** Bump toml from 1.1.4+spec-1.1.0 to 1.1.5+spec-1.1.0 ([#122](https://github.com/jatmn/Codex-warp/issues/122)) ([f539391](https://github.com/jatmn/Codex-warp/commit/f539391f9b332f4819095ece411440ece7489ce6)) + + +### Continuous Integration + +* stop scanners treating the GitHub App action pin as a secret ([#119](https://github.com/jatmn/Codex-warp/issues/119)) ([783bbda](https://github.com/jatmn/Codex-warp/commit/783bbda9986609b7d51c65d3b22bed165a2df4f2)) + ## [0.1.0](https://github.com/jatmn/Codex-warp/compare/v0.0.1...v0.1.0) (2026-09-02) diff --git a/Cargo.lock b/Cargo.lock index d4f343f..dfd2fc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,7 +221,7 @@ dependencies = [ [[package]] name = "codex-warp" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 45bd38c..eff8d2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codex-warp" -version = "0.1.0" +version = "0.1.1" edition = "2024" description = "A local Responses API compatibility proxy for Codex clients" repository = "https://github.com/jatmn/Codex-warp"