From 86ee9b67f17e7d56b027423a637912e3342c4517 Mon Sep 17 00:00:00 2001 From: Platform Bot Date: Sun, 5 Jul 2026 02:28:22 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20release=20v0.12.10=20=E2=80=94=20smart?= =?UTF-8?q?=5Fscore=20fix=20+=20server=20v0.11.97=20sync=20(DAK-7362)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Documents the RecalledMemory.score smart_score fix (PR #181) and bundles server v0.11.97 security dep pins (quick-xml/memmap2), CI improvements. Co-authored-by: SDK Lead --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- src/dakera/__init__.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a2e90..fc79001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.10] - 2026-07-05 + +### Fixed + +- **`RecalledMemory.score` now returns server-rank ordering** — `.score` previously exposed the + raw `score` field, which did not match the server's actual ranking key (`smart_score` → + `weighted_score` → `score` fallback). `.score` now resolves `smart_score` when present, then + `weighted_score`, then raw `score`. New optional fields `smart_score` and `weighted_score` are + exposed on `RecalledMemory` for consumers that need the raw components. + ([#181](https://github.com/Dakera-AI/dakera-py/pull/181)) + +### Changed + +- **Server sync v0.11.97** — no additional SDK API surface changes; bundled with server v0.11.97 + security dep pins (quick-xml/memmap2), CI improvements (DAK-7362). + ## [0.12.9] - 2026-07-02 ### Changed diff --git a/pyproject.toml b/pyproject.toml index e122ad2..db81e35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dakera" -version = "0.12.9" +version = "0.12.10" description = "Python SDK for Dakera - AI memory platform" readme = "README.md" license = {text = "MIT"} diff --git a/src/dakera/__init__.py b/src/dakera/__init__.py index f34e4d8..27b8266 100644 --- a/src/dakera/__init__.py +++ b/src/dakera/__init__.py @@ -158,7 +158,7 @@ DakeraDelegationHelper, ) -__version__ = "0.12.9" +__version__ = "0.12.10" __all__ = [ # Clients "DakeraClient",