From b433e0e99fe97a7c64f955085048051bef959f5a Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 7 May 2023 18:35:22 +0800 Subject: [PATCH] 0.2.1 --- Cargo.toml | 8 ++++---- sea-streamer-kafka/Cargo.toml | 2 +- sea-streamer-redis/Cargo.toml | 2 +- sea-streamer-socket/Cargo.toml | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c8a57d..f0e0dbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] name = "sea-streamer" -version = "0.2.0" +version = "0.2.1" authors = ["Chris Tsang "] edition = "2021" description = "🌊 The stream processing toolkit for Rust" @@ -29,10 +29,10 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] sea-streamer-types = { version = "0.2", path = "sea-streamer-types" } -sea-streamer-kafka = { version = "0.2", path = "sea-streamer-kafka", optional = true } -sea-streamer-redis = { version = "0.2", path = "sea-streamer-redis", optional = true } +sea-streamer-kafka = { version = "0.2.1", path = "sea-streamer-kafka", optional = true } +sea-streamer-redis = { version = "0.2.1", path = "sea-streamer-redis", optional = true } sea-streamer-stdio = { version = "0.2", path = "sea-streamer-stdio", optional = true } -sea-streamer-socket = { version = "0.2", path = "sea-streamer-socket", optional = true } +sea-streamer-socket = { version = "0.2.1", path = "sea-streamer-socket", optional = true } sea-streamer-runtime = { version = "0.2", path = "sea-streamer-runtime", optional = true } [features] diff --git a/sea-streamer-kafka/Cargo.toml b/sea-streamer-kafka/Cargo.toml index 559a584..4b1efce 100644 --- a/sea-streamer-kafka/Cargo.toml +++ b/sea-streamer-kafka/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-streamer-kafka" -version = "0.2.0" +version = "0.2.1" authors = ["Chris Tsang "] edition = "2021" description = "🌊 SeaStreamer Kafka / Redpanda Backend" diff --git a/sea-streamer-redis/Cargo.toml b/sea-streamer-redis/Cargo.toml index 8579ce1..d6ca76b 100644 --- a/sea-streamer-redis/Cargo.toml +++ b/sea-streamer-redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-streamer-redis" -version = "0.2.0" +version = "0.2.1" authors = ["Chris Tsang "] edition = "2021" description = "🌊 SeaStreamer Redis Backend" diff --git a/sea-streamer-socket/Cargo.toml b/sea-streamer-socket/Cargo.toml index 9282700..94b4c80 100644 --- a/sea-streamer-socket/Cargo.toml +++ b/sea-streamer-socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-streamer-socket" -version = "0.2.0" +version = "0.2.1" authors = ["Chris Tsang "] edition = "2021" description = "🌊 SeaStreamer backend-agnostic Socket API" @@ -18,8 +18,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] anyhow = { version = "1", optional = true } env_logger = { version = "0.9", optional = true } -sea-streamer-kafka = { version = "0.2", path = "../sea-streamer-kafka", optional = true } -sea-streamer-redis = { version = "0.2", path = "../sea-streamer-redis", optional = true } +sea-streamer-kafka = { version = "0.2.1", path = "../sea-streamer-kafka", optional = true } +sea-streamer-redis = { version = "0.2.1", path = "../sea-streamer-redis", optional = true } sea-streamer-stdio = { version = "0.2", path = "../sea-streamer-stdio", optional = true } sea-streamer-types = { version = "0.2", path = "../sea-streamer-types" } structopt = { version = "0.3", optional = true }