From c874229dda3c516bb43f8dacdf6892a5053a592d Mon Sep 17 00:00:00 2001 From: gabrik Date: Wed, 22 Feb 2023 09:09:25 +0100 Subject: [PATCH] bump version Signed-off-by: gabrik --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- cargo-zenoh-flow/src/templates.rs | 6 +++--- zenoh-flow-daemon/Cargo.toml | 2 +- zenoh-flow-plugin/Cargo.toml | 4 ++-- zenoh-flow/Cargo.toml | 2 +- zfctl/Cargo.toml | 2 +- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 81a2ed92..dc085dee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -392,7 +392,7 @@ checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" [[package]] name = "cargo-zenoh-flow" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" dependencies = [ "async-std", "cargo_toml", @@ -3235,7 +3235,7 @@ dependencies = [ [[package]] name = "zenoh-flow" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" dependencies = [ "anyhow", "async-lock", @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "zenoh-flow-daemon" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" dependencies = [ "async-ctrlc", "async-std", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "zenoh-flow-derive" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" dependencies = [ "Inflector", "async-std", @@ -3328,7 +3328,7 @@ dependencies = [ [[package]] name = "zenoh-flow-plugin" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" dependencies = [ "async-std", "async-trait", @@ -3621,7 +3621,7 @@ checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" [[package]] name = "zfctl" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" dependencies = [ "async-std", "base64 0.20.0", diff --git a/Cargo.toml b/Cargo.toml index 4ff04d30..78160d94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ members = [ [workspace.package] -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" authors = ["ZettaScale Zenoh Team "] categories = ["network-programming"] description = "Zenoh-Flow: a Zenoh-based data flow programming framework for computations that span from the cloud to the device." diff --git a/cargo-zenoh-flow/src/templates.rs b/cargo-zenoh-flow/src/templates.rs index 75043b4c..a7475b25 100644 --- a/cargo-zenoh-flow/src/templates.rs +++ b/cargo-zenoh-flow/src/templates.rs @@ -17,7 +17,7 @@ use serde::Serialize; use tinytemplate::TinyTemplate; static CARGO_OPERATOR_TEMPLATE: &str = r#" -zenoh-flow = \{ version = "=0.4.0-alpha.1"} +zenoh-flow = \{ version = "=0.4.0-alpha.2"} [lib] name = "{name}" @@ -33,7 +33,7 @@ outputs=[ \{id ="OUTPUT", type="bytes"}] "#; static CARGO_SOURCE_TEMPLATE: &str = r#" -zenoh-flow = \{ version = "=0.4.0-alpha.1"} +zenoh-flow = \{ version = "=0.4.0-alpha.2"} async-trait = "0.1" [lib] @@ -49,7 +49,7 @@ outputs=[ \{id ="Data", type="bytes"}] "#; static CARGO_SINK_TEMPLATE: &str = r#" -zenoh-flow = \{ version = "=0.4.0-alpha.1"} +zenoh-flow = \{ version = "=0.4.0-alpha.2"} async-trait = "0.1" [lib] diff --git a/zenoh-flow-daemon/Cargo.toml b/zenoh-flow-daemon/Cargo.toml index e391bd7c..4ac2d406 100644 --- a/zenoh-flow-daemon/Cargo.toml +++ b/zenoh-flow-daemon/Cargo.toml @@ -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.1", path = "../zenoh-flow"} +zenoh-flow = {version = "=0.4.0-alpha.2", path = "../zenoh-flow"} async-trait = "0.1.50" env_logger = "0.10.0" serde_derive = "1.0" diff --git a/zenoh-flow-plugin/Cargo.toml b/zenoh-flow-plugin/Cargo.toml index dd846853..8cfc4813 100644 --- a/zenoh-flow-plugin/Cargo.toml +++ b/zenoh-flow-plugin/Cargo.toml @@ -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.1", path = "../zenoh-flow-daemon"} -zenoh-flow = {version = "=0.4.0-alpha.1", path = "../zenoh-flow"} +zenoh-flow-daemon = {version = "=0.4.0-alpha.2", path = "../zenoh-flow-daemon"} +zenoh-flow = {version = "=0.4.0-alpha.2", path = "../zenoh-flow"} [build-dependencies] rustc_version = "0.4" diff --git a/zenoh-flow/Cargo.toml b/zenoh-flow/Cargo.toml index a0614250..847ade64 100644 --- a/zenoh-flow/Cargo.toml +++ b/zenoh-flow/Cargo.toml @@ -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.1", path = "../zenoh-flow-derive"} +zenoh-flow-derive = {version = "=0.4.0-alpha.2", path = "../zenoh-flow-derive"} zenoh-sync = { version = "=0.7.0-rc" } zenoh-util = { version = "=0.7.0-rc" } zrpc = { version= "=0.6.0-alpha1" } diff --git a/zfctl/Cargo.toml b/zfctl/Cargo.toml index c4b5166f..0e6f24a2 100644 --- a/zfctl/Cargo.toml +++ b/zfctl/Cargo.toml @@ -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.1", path = "../zenoh-flow"} +zenoh-flow = {version = "=0.4.0-alpha.2", path = "../zenoh-flow"} zenoh-util = { version = "=0.7.0-rc" } zrpc = { version= "=0.6.0-alpha1" } zrpc-macros = { version= "=0.6.0-alpha1" }