Skip to content
Merged
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.1.2.post1](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.2.post1) (2026-04-29)

### Features

* Session: Updated session summarization to retain full conversation history while marking summarized events as model-invisible.
* Session: Added backend-threaded summarization execution to avoid blocking front-end conversation turns.
* Skill: Added multi-user support for skill operations.

### Bug Fixes

* Code Execution: Fixed the conflict between code execution and tool invocation where tool data could be lost after code execution.
* MCP: Added support for parsing and returning multiple MCP tool results in a single response.

## [1.1.2](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.2) (2026-04-24)

### Features
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

def test_version():
"""Test the version module."""
assert __version__ == '1.1.2'
assert __version__ == '1.1.2.post1'
2 changes: 1 addition & 1 deletion trpc_agent_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
This module defines the version information for TRPC Agent
"""

__version__ = '1.1.2'
__version__ = '1.1.2.post1'
Loading