From 5d5e35e733787439db6daa3f2d50060582d8da53 Mon Sep 17 00:00:00 2001 From: Platform Bot Date: Fri, 26 Jun 2026 10:32:41 +0000 Subject: [PATCH 1/2] chore: bump version to 0.12.8, add CHANGELOG entry (fix DAK-7230) pyproject.toml had version 0.12.7 when GitHub Release v0.12.8 was created, causing PyPI publish to fail with "File already exists" for the old version. Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed64052..7855685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.8] - 2026-06-26 + +### Changed + +- fix(changelog): correct reranker model org and version in CE-13 CHANGELOG entry (#175, #176) + ## [0.12.7] - 2026-06-24 ### Added diff --git a/pyproject.toml b/pyproject.toml index 4f30f37..f120c18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dakera" -version = "0.12.7" +version = "0.12.8" description = "Python SDK for Dakera - AI memory platform" readme = "README.md" license = {text = "MIT"} From c9abd2925d140f276e254b3e8128a47cba59deb6 Mon Sep 17 00:00:00 2001 From: Platform Bot Date: Fri, 26 Jun 2026 10:34:08 +0000 Subject: [PATCH 2/2] fix: also bump __version__ in __init__.py to 0.12.8 (DAK-7230) Co-Authored-By: Claude Sonnet 4.6 --- src/dakera/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dakera/__init__.py b/src/dakera/__init__.py index c7bca80..d00c33f 100644 --- a/src/dakera/__init__.py +++ b/src/dakera/__init__.py @@ -158,7 +158,7 @@ DakeraDelegationHelper, ) -__version__ = "0.12.7" +__version__ = "0.12.8" __all__ = [ # Clients "DakeraClient",