diff --git a/Cargo.lock b/Cargo.lock index 5acaecb..7c9f0a5 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 174b7d9..e535826 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 511db44..15c573d 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 815ac24..dba3912 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 0ec60da..ca4d86e 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 f80f901..5643f67 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 d30f6cc..94743b8 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 dc45246..c709999 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 01efafe..4d32ddc 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 d374bc3..335b4ce 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 c6c2216..0d2d455 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 2a1f341..038d2ed 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"