Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"core/wren": "0.10.0",
"core/wren-core-wasm": "0.4.1",
"sdk/wren-langchain": "0.2.0",
"sdk/wren-pydantic": "0.2.0"
"sdk/wren-pydantic": "0.3.0"
}
7 changes: 7 additions & 0 deletions sdk/wren-pydantic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.0](https://github.com/CrazyForks/WrenAI/compare/wren-pydantic-v0.2.0...wren-pydantic-v0.3.0) (2026-06-21)


### Features

* **sdk:** add wren-pydantic package for Pydantic AI integration ([#2255](https://github.com/CrazyForks/WrenAI/issues/2255)) ([ff6ae50](https://github.com/CrazyForks/WrenAI/commit/ff6ae50a0c956d9a7b29218fc0f27547fa4abfa6))

## [0.2.0](https://github.com/Canner/WrenAI/compare/wren-pydantic-v0.1.0...wren-pydantic-v0.2.0) (2026-05-14)


Expand Down
2 changes: 1 addition & 1 deletion sdk/wren-pydantic/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "wren-pydantic"
version = "0.2.0"
version = "0.3.0"
description = "Pydantic AI integration for Wren AI Core — attach a CLI-prepared Wren project to your agent in three lines."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion sdk/wren-pydantic/src/wren_pydantic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from wren_pydantic._toolkit import WrenToolkit
from wren_pydantic.exceptions import MemoryNotEnabledError, WrenToolkitInitError

__version__ = "0.2.0"
__version__ = "0.3.0"

__all__ = [
"MemoryNotEnabledError",
Expand Down