From 6821c41416f2e242c32cc8e3c813eafac6a92513 Mon Sep 17 00:00:00 2001 From: "s2-release-plz[bot]" <262023388+s2-release-plz[bot]@users.noreply.github.com> Date: Thu, 19 Mar 2026 18:54:22 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- api/CHANGELOG.md | 12 ++++++++++++ api/Cargo.toml | 2 +- cli/CHANGELOG.md | 8 ++++++++ cli/Cargo.toml | 2 +- common/CHANGELOG.md | 8 ++++++++ common/Cargo.toml | 2 +- lite/CHANGELOG.md | 8 ++++++++ lite/Cargo.toml | 2 +- sdk/CHANGELOG.md | 8 ++++++++ sdk/Cargo.toml | 2 +- 12 files changed, 56 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5acaecb5..7c9f0a5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4539,7 +4539,7 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "s2-api" -version = "0.27.11" +version = "0.27.12" dependencies = [ "axum", "base64ct", @@ -4568,7 +4568,7 @@ dependencies = [ [[package]] name = "s2-cli" -version = "0.29.24" +version = "0.29.25" dependencies = [ "assert_cmd", "async-stream", @@ -4621,7 +4621,7 @@ dependencies = [ [[package]] name = "s2-common" -version = "0.28.3" +version = "0.29.0" dependencies = [ "axum", "blake3", @@ -4644,7 +4644,7 @@ dependencies = [ [[package]] name = "s2-lite" -version = "0.29.24" +version = "0.29.25" dependencies = [ "async-stream", "async-trait", @@ -4692,7 +4692,7 @@ dependencies = [ [[package]] name = "s2-sdk" -version = "0.24.8" +version = "0.25.0" dependencies = [ "assert_matches", "async-compression", diff --git a/Cargo.toml b/Cargo.toml index 174b7d98..e5358264 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,9 +51,9 @@ rkyv = "0.8" rstest = "0.26" rustls = "0.23" s2-api = { path = "api", version = "0.27" } -s2-common = { path = "common", version = "0.28" } +s2-common = { path = "common", version = "0.29" } s2-lite = { path = "lite", version = "0.29" } -s2-sdk = { path = "sdk", version = "0.24" } +s2-sdk = { path = "sdk", version = "0.25" } schemars = "1.2" serde = "1.0" serde_json = "1.0" diff --git a/api/CHANGELOG.md b/api/CHANGELOG.md index 511db448..15c573d3 100644 --- a/api/CHANGELOG.md +++ b/api/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.27.12] - 2026-03-19 + +### Refactor + +- Remove basin creating state ([#333](https://github.com/s2-streamstore/s2/issues/333)) + +### Miscellaneous Tasks + +- Sync specs submodule ([#334](https://github.com/s2-streamstore/s2/issues/334)) + + + ## [0.27.11] - 2026-03-15 ### Bug Fixes diff --git a/api/Cargo.toml b/api/Cargo.toml index 815ac242..dba3912f 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2-api" -version = "0.27.11" +version = "0.27.12" description = "API types for S2, the durable streams API" edition.workspace = true license.workspace = true diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 0ec60da8..ca4d86ee 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.29.25] - 2026-03-19 + +### Refactor + +- Remove basin creating state ([#333](https://github.com/s2-streamstore/s2/issues/333)) + + + ## [0.29.24] - 2026-03-17 ### Miscellaneous Tasks diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f80f9010..5643f67f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2-cli" -version = "0.29.24" +version = "0.29.25" description = "CLI for S2" edition.workspace = true license.workspace = true diff --git a/common/CHANGELOG.md b/common/CHANGELOG.md index d30f6ccf..94743b8e 100644 --- a/common/CHANGELOG.md +++ b/common/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.29.0] - 2026-03-19 + +### Refactor + +- Remove basin creating state ([#333](https://github.com/s2-streamstore/s2/issues/333)) + + + ## [0.28.3] - 2026-03-15 ### Bug Fixes diff --git a/common/Cargo.toml b/common/Cargo.toml index dc452464..c7099998 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2-common" -version = "0.28.3" +version = "0.29.0" description = "Common stuff for client and servers for S2, the durable streams API" edition.workspace = true license.workspace = true diff --git a/lite/CHANGELOG.md b/lite/CHANGELOG.md index 01efafe6..4d32ddcf 100644 --- a/lite/CHANGELOG.md +++ b/lite/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.29.25] - 2026-03-19 + +### Refactor + +- Remove basin creating state ([#333](https://github.com/s2-streamstore/s2/issues/333)) + + + ## [0.29.24] - 2026-03-17 ### Miscellaneous Tasks diff --git a/lite/Cargo.toml b/lite/Cargo.toml index d374bc3d..335b4ce3 100644 --- a/lite/Cargo.toml +++ b/lite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s2-lite" -version = "0.29.24" +version = "0.29.25" description = "Lightweight server implementation of S2, the durable streams API, backed by object storage" edition.workspace = true license.workspace = true diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index c6c22163..0d2d4555 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.25.0] - 2026-03-19 + +### Refactor + +- Remove basin creating state ([#333](https://github.com/s2-streamstore/s2/issues/333)) + + + ## [0.24.8] - 2026-03-06 ### Bug Fixes diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 2a1f3416..038d2edf 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "s2-sdk" description = "Rust SDK for S2" -version = "0.24.8" +version = "0.25.0" edition.workspace = true license.workspace = true repository = "https://github.com/s2-streamstore/s2/tree/main/sdk"