Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.10.0] - 2026-04-20

### Added
- Support for provider specific params
- Support for provider-specific params via `with_params` (#44)

### Changed
- **Bump `ruby_llm` dependency**: now `~> 1.14` (was `~> 1.9.1`). Trusts upstream semantic versioning by dropping the PATCH-level pin so minor-version fixes are picked up automatically (#61)

### Internal
- Extract `NameNormalizer` for agent-to-tool-name conversion (#53)
- Remove duplicate `serialize_content` in `TracingCallbacks` (#52)
- Remove duplicate Headers and Params helper wrappers (#51)
- Expose agents via `attr_reader` on `AgentRunner` (#54)
- Extract `finalize_run` helper to deduplicate Runner exit paths (#56)
- Eliminate redundant work and inconsistency in `TracingCallbacks` (#57)


## [0.9.1] - 2026-02-24
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ai-agents (0.9.1)
ai-agents (0.10.0)
ruby_llm (~> 1.14)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/agents/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Agents
VERSION = "0.9.1"
VERSION = "0.10.0"
end
Loading