Skip to content

Commit a57abb6

Browse files
committed
Prepare 1.2.0 release notes and docs version
1 parent 309e9bf commit a57abb6

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,28 @@ All notable changes to this project are documented in this file.
66

77
- No changes yet.
88

9+
## [1.2.0] - 2026-02-22
10+
11+
### Added
12+
13+
- Added loop-level LLM retry controls to `AgentLoopConfig` (`maxRetries`, `retryDelay`) with automatic retry for retryable provider errors.
14+
- Added per-call and whole-loop timeout controls to `AgentLoopConfig` (`llmCallTimeout`, `totalTimeout`).
15+
- Added `AgentLoop` tests for retry behavior, non-retryable failures, and timeout handling.
16+
17+
### Changed
18+
19+
- Updated `runAgentLoop` to apply retry/timeout behavior around provider `sendMessage` calls while keeping tool execution retry policy unchanged.
20+
21+
### Removed
22+
23+
- Removed `Examples/MinimalCLI` executable target and related package/example references.
24+
25+
### Docs
26+
27+
- Updated README features section wording and formatting.
28+
- Added DeepWiki badge and explicit platform badge (`macOS 13+ | iOS 16+`).
29+
- Updated roadmap entries to include optional MCP client and context-window management items.
30+
931
## [1.1.0] - 2026-02-21
1032

1133
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add SwiftAgentCore as a dependency in your `Package.swift`:
3333

3434
```swift
3535
dependencies: [
36-
.package(url: "https://github.com/herrkaefer/SwiftAgentCore.git", from: "1.1.0")
36+
.package(url: "https://github.com/herrkaefer/SwiftAgentCore.git", from: "1.2.0")
3737
],
3838
targets: [
3939
.target(

0 commit comments

Comments
 (0)