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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.5] - 2026-06-17

### Added

- **`AsyncChatMemorySession`** — async counterpart to `ChatMemorySession` for use with
`AsyncDakeraClient`. Supports `async with` context manager, async factory
`await AsyncChatMemorySession.create(client, agent_id)`, and the same
`store`/`recall`/`close` API as the sync class. Exported as
`dakera.AsyncChatMemorySession`. (DAK-6895, [#160](https://github.com/Dakera-AI/dakera-py/pull/160))

### Internal

- **CI version-drift gate** — `__version__` in `src/dakera/__init__.py` is now
asserted to match `pyproject.toml` on every CI run to prevent version skew.
(DAK-6850, [#159](https://github.com/Dakera-AI/dakera-py/pull/159))

## [0.12.4] - 2026-06-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dakera"
version = "0.12.4"
version = "0.12.5"
description = "Python SDK for Dakera - AI memory platform"
readme = "README.md"
license = {text = "MIT"}
Expand Down
2 changes: 1 addition & 1 deletion src/dakera/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
DakeraDelegationHelper,
)

__version__ = "0.12.4"
__version__ = "0.12.5"
__all__ = [
# Clients
"DakeraClient",
Expand Down
Loading