From aaacaa04f64afb26dc218af11ffbed69d71bbab8 Mon Sep 17 00:00:00 2001 From: Hubert Gruszecki Date: Sun, 12 Jul 2026 23:47:12 +0200 Subject: [PATCH] chore(rust): bump sdk, common, binary_protocol, server patch versions --- Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- core/binary_protocol/Cargo.toml | 2 +- core/common/Cargo.toml | 2 +- core/sdk/Cargo.toml | 2 +- core/server/Cargo.toml | 2 +- foreign/python/Cargo.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c755980820..db12eea956 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6588,7 +6588,7 @@ checksum = "cd62e6b5e86ea8eeeb8db1de02880a6abc01a397b2ebb64b5d74ac255318f5cb" [[package]] name = "iggy" -version = "0.10.1-edge.2" +version = "0.10.2-edge.1" dependencies = [ "async-broadcast", "async-dropper", @@ -6798,7 +6798,7 @@ dependencies = [ [[package]] name = "iggy_binary_protocol" -version = "0.10.1-edge.2" +version = "0.10.2-edge.1" dependencies = [ "aligned-vec", "bytemuck", @@ -6810,7 +6810,7 @@ dependencies = [ [[package]] name = "iggy_common" -version = "0.10.1-edge.2" +version = "0.10.2-edge.1" dependencies = [ "aes-gcm", "async-broadcast", @@ -11686,7 +11686,7 @@ dependencies = [ [[package]] name = "server" -version = "0.8.1-edge.1" +version = "0.8.2-edge.1" dependencies = [ "ahash 0.8.12", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 0c31e253f8..58efa30365 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -192,10 +192,10 @@ hwlocality = "1.0.0-alpha.12" iceberg = "0.9.1" iceberg-catalog-rest = "0.9.1" iceberg-storage-opendal = "0.9.1" -iggy = { path = "core/sdk", version = "0.10.1-edge.2" } +iggy = { path = "core/sdk", version = "0.10.2-edge.1" } iggy-cli = { path = "core/cli", version = "0.13.1-edge.1" } -iggy_binary_protocol = { path = "core/binary_protocol", version = "0.10.1-edge.2" } -iggy_common = { path = "core/common", version = "0.10.1-edge.2" } +iggy_binary_protocol = { path = "core/binary_protocol", version = "0.10.2-edge.1" } +iggy_common = { path = "core/common", version = "0.10.2-edge.1" } iggy_connector_sdk = { path = "core/connectors/sdk", version = "0.3.1-edge.1" } indexmap = "2.14.0" integration = { path = "core/integration" } diff --git a/core/binary_protocol/Cargo.toml b/core/binary_protocol/Cargo.toml index dc61a4919f..a432bf8bff 100644 --- a/core/binary_protocol/Cargo.toml +++ b/core/binary_protocol/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "iggy_binary_protocol" -version = "0.10.1-edge.2" +version = "0.10.2-edge.1" description = "Wire protocol types and codec for the Iggy binary protocol. Shared between server and SDK." edition = "2024" rust-version.workspace = true diff --git a/core/common/Cargo.toml b/core/common/Cargo.toml index fd86f57b99..818ac90bc4 100644 --- a/core/common/Cargo.toml +++ b/core/common/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "iggy_common" -version = "0.10.1-edge.2" +version = "0.10.2-edge.1" description = "Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second." edition = "2024" rust-version.workspace = true diff --git a/core/sdk/Cargo.toml b/core/sdk/Cargo.toml index 6585504856..2d407a8be7 100644 --- a/core/sdk/Cargo.toml +++ b/core/sdk/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "iggy" -version = "0.10.1-edge.2" +version = "0.10.2-edge.1" description = "Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second." edition = "2024" rust-version.workspace = true diff --git a/core/server/Cargo.toml b/core/server/Cargo.toml index f405386119..2c29e13b30 100644 --- a/core/server/Cargo.toml +++ b/core/server/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "server" -version = "0.8.1-edge.1" +version = "0.8.2-edge.1" edition = "2024" license = "Apache-2.0" publish = false diff --git a/foreign/python/Cargo.toml b/foreign/python/Cargo.toml index b46db98505..df72da8960 100644 --- a/foreign/python/Cargo.toml +++ b/foreign/python/Cargo.toml @@ -37,7 +37,7 @@ doc = false [dependencies] bytes = "1.12.0" futures = "0.3.32" -iggy = { path = "../../core/sdk", version = "0.10.1-edge.2" } +iggy = { path = "../../core/sdk", version = "0.10.2-edge.1" } pyo3 = "0.29.0" pyo3-async-runtimes = { version = "0.29.0", features = [ "attributes",