From 8b4901411788d49b3c7c9f4bbee0aa41d75551de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 07:10:52 +0000 Subject: [PATCH] chore(main): release 0.12.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ src/rius/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 78e7f27..8032c17 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.0" + ".": "0.12.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8afc49b..cf82480 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.12.0](https://github.com/glassflow/rius-sdk-python/compare/v0.11.0...v0.12.0) (2026-08-20) + + +### Features + +* session ids — a scoped session() plus an init-level default ([#61](https://github.com/glassflow/rius-sdk-python/issues/61)) ([4279e43](https://github.com/glassflow/rius-sdk-python/commit/4279e43687dbf47c4d5746c07f857d6d26b5929c)) +* stamp service.instance.id on spans and share it with the heartbeat ([#63](https://github.com/glassflow/rius-sdk-python/issues/63)) ([e0b2ae9](https://github.com/glassflow/rius-sdk-python/commit/e0b2ae90be997ef9045486e8b17b191488dd61bc)) + ## [0.11.0](https://github.com/glassflow/rius-sdk-python/compare/v0.10.0...v0.11.0) (2026-08-17) diff --git a/src/rius/__init__.py b/src/rius/__init__.py index 6c9f72a..ca7fa66 100644 --- a/src/rius/__init__.py +++ b/src/rius/__init__.py @@ -1,6 +1,6 @@ """GlassFlow SDK: OpenTelemetry-native tracing for AI agents and LLM apps.""" -__version__ = "0.11.0" # x-release-please-version +__version__ = "0.12.0" # x-release-please-version from .client import GlassflowClient, build_span_exporter, get_tracer, init from .config import GlassflowConfig, resolve_config