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 @@ -2,6 +2,6 @@
"core/wren-core-py": "0.7.1",
"core/wren": "0.11.0",
"core/wren-core-wasm": "0.4.1",
"sdk/wren-langchain": "0.2.0",
"sdk/wren-langchain": "0.3.0",
"sdk/wren-pydantic": "0.2.0"
}
12 changes: 12 additions & 0 deletions sdk/wren-langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.3.0](https://github.com/CloudEngineHub/WrenAI/compare/wren-langchain-v0.2.0...wren-langchain-v0.3.0) (2026-07-04)


### Features

* **sdk:** add wren-langchain package for langchain/langgraph integration ([#2247](https://github.com/CloudEngineHub/WrenAI/issues/2247)) ([f2c3b2d](https://github.com/CloudEngineHub/WrenAI/commit/f2c3b2d834235e085d28e8726b81fd089028f5fd))


### Bug Fixes

* finish wren-engine → wrenai rename cleanup ([#2425](https://github.com/CloudEngineHub/WrenAI/issues/2425)) ([0733d37](https://github.com/CloudEngineHub/WrenAI/commit/0733d379e15f041235bd7ff7449ecc421834a7f4))

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


Expand Down
2 changes: 1 addition & 1 deletion sdk/wren-langchain/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-langchain"
version = "0.2.0"
version = "0.3.0"
description = "LangChain and LangGraph 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-langchain/src/wren_langchain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
WrenToolkitInitError,
)

__version__ = "0.2.0"
__version__ = "0.3.0"

__all__ = [
"WrenToolkit",
Expand Down