Skip to content

Commit

Permalink
bump version to 0.4.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Loudet committed Apr 27, 2023
1 parent cd1b817 commit 8b768ad
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ members = [


[workspace.package]
version = "0.4.0-alpha.2"
version = "0.4.0-alpha.3"
authors = ["ZettaScale Zenoh Team <zenoh@zettascale.tech>"]
categories = ["network-programming"]
description = "Zenoh-Flow: a Zenoh-based data flow programming framework for computations that span from the cloud to the device."
Expand Down
6 changes: 3 additions & 3 deletions cargo-zenoh-flow/src/templates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use serde::Serialize;
use tinytemplate::TinyTemplate;

static CARGO_OPERATOR_TEMPLATE: &str = r#"
zenoh-flow = \{ version = "=0.4.0-alpha.2"}
zenoh-flow = \{ version = "=0.4.0-alpha.3"}
[lib]
name = "{name}"
Expand All @@ -33,7 +33,7 @@ outputs=[ \{id ="OUTPUT", type="bytes"}]
"#;

static CARGO_SOURCE_TEMPLATE: &str = r#"
zenoh-flow = \{ version = "=0.4.0-alpha.2"}
zenoh-flow = \{ version = "=0.4.0-alpha.3"}
async-trait = "0.1"
[lib]
Expand All @@ -49,7 +49,7 @@ outputs=[ \{id ="Data", type="bytes"}]
"#;

static CARGO_SINK_TEMPLATE: &str = r#"
zenoh-flow = \{ version = "=0.4.0-alpha.2"}
zenoh-flow = \{ version = "=0.4.0-alpha.3"}
async-trait = "0.1"
[lib]
Expand Down
2 changes: 1 addition & 1 deletion zenoh-flow-daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
zenoh-flow = {version = "=0.4.0-alpha.2", path = "../zenoh-flow"}
zenoh-flow = {version = "=0.4.0-alpha.3", path = "../zenoh-flow"}
async-trait = "0.1.50"
env_logger = "0.10.0"
serde_derive = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions zenoh-flow-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ zenoh-collections = { version = "=0.7.0-rc" }
zenoh-core = { version = "=0.7.0-rc" }
zenoh-ext = { version = "=0.7.0-rc", features = ["unstable"] }
zenoh-plugin-trait = { version = "=0.7.0-rc", default-features = false }
zenoh-flow-daemon = {version = "=0.4.0-alpha.2", path = "../zenoh-flow-daemon"}
zenoh-flow = {version = "=0.4.0-alpha.2", path = "../zenoh-flow"}
zenoh-flow-daemon = {version = "=0.4.0-alpha.3", path = "../zenoh-flow-daemon"}
zenoh-flow = {version = "=0.4.0-alpha.3", path = "../zenoh-flow"}

[build-dependencies]
rustc_version = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion zenoh-flow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ uhlc = "0.5.1"
url = "2.2"
uuid = { version = "1.1", features = ["serde", "v4"] }
zenoh = { version = "=0.7.0-rc" }
zenoh-flow-derive = {version = "=0.4.0-alpha.2", path = "../zenoh-flow-derive"}
zenoh-flow-derive = {version = "=0.4.0-alpha.3", path = "../zenoh-flow-derive"}
zenoh-sync = { version = "=0.7.0-rc" }
zenoh-util = { version = "=0.7.0-rc" }
zrpc = { version= "=0.6.1-alpha.1" }
Expand Down
2 changes: 1 addition & 1 deletion zfctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ serde_json = "1.0.55"
serde_yaml = "0.9"
uuid = { version = "1.1", features = ["serde", "v4"] }
zenoh = { version = "=0.7.0-rc" }
zenoh-flow = {version = "=0.4.0-alpha.2", path = "../zenoh-flow"}
zenoh-flow = {version = "=0.4.0-alpha.3", path = "../zenoh-flow"}
zenoh-util = { version = "=0.7.0-rc" }
zrpc = { version= "=0.6.1-alpha.1" }
zrpc-macros = { version= "=0.6.1-alpha.1" }
Expand Down

0 comments on commit 8b768ad

Please sign in to comment.