Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Apr 24, 2024
1 parent d91ed2c commit 258ce87
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 38 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [

[package]
name = "sea-streamer"
version = "0.3.2"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 The stream processing toolkit for Rust"
Expand All @@ -32,13 +32,13 @@ features = ["json", "kafka", "stdio", "socket"]
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
sea-streamer-types = { version = "0.3", path = "sea-streamer-types" }
sea-streamer-kafka = { version = "0.3", path = "sea-streamer-kafka", optional = true }
sea-streamer-redis = { version = "0.3.2", path = "sea-streamer-redis", optional = true }
sea-streamer-stdio = { version = "0.3", path = "sea-streamer-stdio", optional = true }
sea-streamer-file = { version = "0.3.2", path = "sea-streamer-file", optional = true }
sea-streamer-socket = { version = "0.3", path = "sea-streamer-socket", optional = true }
sea-streamer-runtime = { version = "0.3", path = "sea-streamer-runtime", optional = true }
sea-streamer-types = { version = "0.5", path = "sea-streamer-types" }
sea-streamer-kafka = { version = "0.5", path = "sea-streamer-kafka", optional = true }
sea-streamer-redis = { version = "0.5", path = "sea-streamer-redis", optional = true }
sea-streamer-stdio = { version = "0.5", path = "sea-streamer-stdio", optional = true }
sea-streamer-file = { version = "0.5", path = "sea-streamer-file", optional = true }
sea-streamer-socket = { version = "0.5", path = "sea-streamer-socket", optional = true }
sea-streamer-runtime = { version = "0.5", path = "sea-streamer-runtime", optional = true }

[features]
json = ["sea-streamer-types/json"]
Expand Down
4 changes: 2 additions & 2 deletions benchmark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-benchmark"
version = "0.3.0"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 The stream processing toolkit for Rust"
Expand All @@ -20,7 +20,7 @@ tokio = { version = "1.10", features = ["full"], optional = true }

[dependencies.sea-streamer]
path = ".." # remove this line in your own project
version = "0.3"
version = "0.5"
features = ["redis", "stdio", "file", "socket"]

[features]
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-examples"
version = "0.3.0"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 The stream processing toolkit for Rust"
Expand All @@ -20,7 +20,7 @@ tokio = { version = "1.10", features = ["full"], optional = true }

[dependencies.sea-streamer]
path = ".." # remove this line in your own project
version = "0.3"
version = "0.5"
features = ["kafka", "redis", "stdio", "file", "socket"]

[features]
Expand Down
2 changes: 1 addition & 1 deletion examples/price-feed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ tokio = { version = "1", features = ["full"] }

[dependencies.sea-streamer]
path = "../.." # remove this line in your own project
version = "0.3"
version = "0.5"
features = ["redis", "socket", "json"]
2 changes: 1 addition & 1 deletion examples/sea-orm-sink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ features = ["sqlx-sqlite", "runtime-tokio-native-tls"]

[dependencies.sea-streamer]
path = "../.." # remove this line in your own project
version = "0.3"
version = "0.5"
features = ["redis", "socket", "json", "runtime-tokio"]
6 changes: 3 additions & 3 deletions sea-streamer-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-file"
version = "0.3.9"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer File Backend"
Expand All @@ -24,8 +24,8 @@ flume = { version = "0.11", default-features = false, features = ["async"] }
lazy_static = { version = "1.4" }
log = { version = "0.4", default-features = false }
notify = { version = "6" }
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime", features = ["file"]}
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime", features = ["file"]}
serde = { version = "1", optional = true, features = ["derive"] }
serde_json = { version = "1", optional = true }
clap = { version = "4.5", features = ["derive"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions 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.3.2"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer Kafka / Redpanda Backend"
Expand All @@ -22,8 +22,8 @@ env_logger = { version = "0.9", optional = true }
lazy_static = { version = "1.4" }
mac_address = { version = "1" }
rdkafka = { version = "0.36", default-features = false, features = ["libz"] }
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime" }
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime" }
clap = { version = "4.5", features = ["derive", "env"], optional = true }
tokio = { version = "1.10.0", optional = true }

Expand Down
6 changes: 3 additions & 3 deletions 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.3.2"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer Redis Backend"
Expand All @@ -24,8 +24,8 @@ lazy_static = { version = "1.4" }
log = { version = "0.4", default-features = false }
mac_address = { version = "1" }
redis = { version = "0.25", default-features = false, features = ["acl", "streams"] }
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime" }
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime" }
clap = { version = "4.5", features = ["derive", "env"], optional = true }
thiserror = { version = "1", default-features = false }
tokio = { version = "1.10.0", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions sea-streamer-redis/redis-streams-dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redis-streams-dump"
version = "0.3.0"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "A small utility to dump Redis Streams content into a SeaStreamer file"
Expand All @@ -15,9 +15,9 @@ rust-version = "1.60"
anyhow = { version = "1" }
env_logger = { version = "0.9" }
log = { version = "0.4", default-features = false }
sea-streamer-file = { version = "0.3", path = "../../sea-streamer-file", features = ["runtime-tokio"] }
sea-streamer-redis = { version = "0.3", path = "../../sea-streamer-redis", features = ["runtime-tokio"] }
sea-streamer-types = { version = "0.3.1", path = "../../sea-streamer-types" }
sea-streamer-file = { version = "0.5", path = "../../sea-streamer-file", features = ["runtime-tokio"] }
sea-streamer-redis = { version = "0.5", path = "../../sea-streamer-redis", features = ["runtime-tokio"] }
sea-streamer-types = { version = "0.5", path = "../../sea-streamer-types" }
clap = { version = "4.5", features = ["derive"] }
time = { version = "0.3", default-features = false, features = ["std", "parsing"] }
tokio = { version = "1.10.0", features = ["full"]}
Expand Down
2 changes: 1 addition & 1 deletion sea-streamer-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-runtime"
version = "0.3.3"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer async runtime abstraction"
Expand Down
12 changes: 6 additions & 6 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.3.0"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer backend-agnostic Socket API"
Expand All @@ -18,11 +18,11 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
anyhow = { version = "1", optional = true }
env_logger = { version = "0.9", optional = true }
sea-streamer-kafka = { version = "0.3", path = "../sea-streamer-kafka", optional = true }
sea-streamer-redis = { version = "0.3", path = "../sea-streamer-redis", optional = true }
sea-streamer-stdio = { version = "0.3", path = "../sea-streamer-stdio", optional = true }
sea-streamer-file = { version = "0.3", path = "../sea-streamer-file", optional = true }
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" }
sea-streamer-kafka = { version = "0.5", path = "../sea-streamer-kafka", optional = true }
sea-streamer-redis = { version = "0.5", path = "../sea-streamer-redis", optional = true }
sea-streamer-stdio = { version = "0.5", path = "../sea-streamer-stdio", optional = true }
sea-streamer-file = { version = "0.5", path = "../sea-streamer-file", optional = true }
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" }
clap = { version = "4.5", features = ["derive"], optional = true }
thiserror = { version = "1", default-features = false }
tokio = { version = "1.10.0", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions sea-streamer-stdio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-stdio"
version = "0.3.0"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer Standard I/O Backend"
Expand All @@ -22,8 +22,8 @@ flume = { version = "0.11", default-features = false, features = ["async"] }
lazy_static = { version = "1.4" }
log = { version = "0.4", default-features = false }
nom = { version = "7" }
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime" }
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" }
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime" }
serde_json = { version = "1", optional = true }
clap = { version = "4.5", features = ["derive"], optional = true }
thiserror = { version = "1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion sea-streamer-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-streamer-types"
version = "0.3.1"
version = "0.5.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 SeaStreamer Traits & Types"
Expand Down

0 comments on commit 258ce87

Please sign in to comment.