Skip to content

Commit 741da50

Browse files
authored
Prepare v1.1.0 release (#3)
1 parent edac36e commit 741da50

3 files changed

Lines changed: 23 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
66

77
## [Unreleased]
88

9+
## [1.1.0] - 2026-03-21
10+
11+
### Added
12+
13+
- Runtime skill support with thread-pinned skills, per-turn skill overrides, and execution-policy enforcement for allowed tools, required tools, tool sequence, and max tool calls.
14+
- Dynamic persona and skill loading from local files and remote URLs through `AgentDefinitionSource`.
15+
- Resolved-instructions preview support so host apps can inspect the final compiled instructions for a turn.
16+
- Transient request retry/backoff policy support in the Codex responses backend.
17+
- Configurable reasoning effort (`low`, `medium`, `high`, `xhigh`) for `gpt-5.4` style thinking control.
18+
- Demo app UI for switching thinking level on future requests.
19+
20+
### Changed
21+
22+
- Added CLI-style unauthorized-session recovery so runtime operations can refresh and retry once after auth expiry or invalidation.
23+
- Improved the demo app’s skill and Health Coach flows to better show persona, skill, and tool orchestration together.
24+
- Expanded README coverage for retries, skills, dynamic definition sources, and reasoning effort configuration.
25+
926
## [1.0.0] - 2026-03-20
1027

1128
### Added
@@ -27,5 +44,6 @@ The format is based on Keep a Changelog and this project follows Semantic Versio
2744
- Refactored demo app into smaller Swift files for clearer ownership and readability.
2845
- Updated README docs with production setup guidance and end-to-end examples.
2946

30-
[Unreleased]: https://github.com/timazed/CodexKit/compare/v1.0.0...HEAD
47+
[Unreleased]: https://github.com/timazed/CodexKit/compare/v1.1.0...HEAD
48+
[1.1.0]: https://github.com/timazed/CodexKit/releases/tag/v1.1.0
3149
[1.0.0]: https://github.com/timazed/CodexKit/releases/tag/v1.0.0

DemoApp/AssistantRuntimeDemoApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleURLTypes</key>
2020
<array>
2121
<dict>
@@ -28,7 +28,7 @@
2828
</dict>
2929
</array>
3030
<key>CFBundleVersion</key>
31-
<string>1</string>
31+
<string>2</string>
3232
<key>LSRequiresIPhoneOS</key>
3333
<true/>
3434
<key>NSHealthShareUsageDescription</key>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CodexKit
22

33
[![CI](https://github.com/timazed/CodexKit/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/timazed/CodexKit/actions/workflows/ci.yml)
4-
![Version](https://img.shields.io/badge/version-1.0.0-blue)
4+
![Version](https://img.shields.io/badge/version-1.1.0-blue)
55

66
`CodexKit` is a lightweight iOS-first SDK for embedding OpenAI Codex-style agents in Apple apps.
77

@@ -357,7 +357,7 @@ print(preview)
357357

358358
## Versioning And Releases
359359

360-
`CodexKit` uses Semantic Versioning. `v1.0.0` is the first stable release.
360+
`CodexKit` uses Semantic Versioning. The latest stable release is `v1.1.0`.
361361

362362
- Release notes live in [CHANGELOG.md](CHANGELOG.md)
363363
- CI runs on pushes/PRs via [`.github/workflows/ci.yml`](.github/workflows/ci.yml)

0 commit comments

Comments
 (0)