Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed May 7, 2023
1 parent 0011d9b commit b433e0e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [

[package]
name = "sea-streamer"
version = "0.2.0"
version = "0.2.1"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 The stream processing toolkit for Rust"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion sea-streamer-kafka/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-kafka"
version = "0.2.0"
version = "0.2.1"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer Kafka / Redpanda Backend"
Expand Down
2 changes: 1 addition & 1 deletion sea-streamer-redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-redis"
version = "0.2.0"
version = "0.2.1"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer Redis Backend"
Expand Down
6 changes: 3 additions & 3 deletions sea-streamer-socket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-socket"
version = "0.2.0"
version = "0.2.1"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer backend-agnostic Socket API"
Expand All @@ -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 }
Expand Down

0 comments on commit b433e0e

Please sign in to comment.