diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bcd0522..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bc19f37..356c93f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.7.0](https://github.com/s2-streamstore/s2-sdk-python/compare/v0.6.0...v0.7.0) (2026-07-21) + + +### ⚠ BREAKING CHANGES + +* introduce `ReadSession` with caught-up state tracking ([#88](https://github.com/s2-streamstore/s2-sdk-python/issues/88)) + +### Features + +* introduce `ReadSession` with caught-up state tracking ([#88](https://github.com/s2-streamstore/s2-sdk-python/issues/88)) ([55da950](https://github.com/s2-streamstore/s2-sdk-python/commit/55da9502bac470b0baf8cbd6780c9e89474ce866)) + + +### Documentation + +* use context manager in read session examples ([#90](https://github.com/s2-streamstore/s2-sdk-python/issues/90)) ([6cfbd98](https://github.com/s2-streamstore/s2-sdk-python/commit/6cfbd98558fcba56c5c14cf426eee327004c6f46)) + ## [0.6.0](https://github.com/s2-streamstore/s2-sdk-python/compare/v0.5.0...v0.6.0) (2026-07-08) diff --git a/docs/source/conf.py b/docs/source/conf.py index 89d1096..4d6f87a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -10,7 +10,7 @@ project = "s2-sdk" copyright = f"{date.today().year}, Bandar Systems Inc" -release = "0.6.0" # x-release-please-version +release = "0.7.0" # x-release-please-version # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 98099a9..b4ead74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "s2-sdk" -version = "0.6.0" +version = "0.7.0" description = "Python SDK for s2.dev" readme = "README.md" license = "MIT"