From e09b3ecd49b2ba063d84367608b3923b7fa04b20 Mon Sep 17 00:00:00 2001 From: Ghamza-Jd Date: Thu, 7 Nov 2024 10:37:06 +0200 Subject: [PATCH] chore(release): bump jarust version to 0.8.0 --- Cargo.toml | 2 +- e2e/Cargo.toml | 2 +- jarust/Cargo.toml | 8 ++++---- jarust_core/Cargo.toml | 4 ++-- jarust_interface/Cargo.toml | 2 +- jarust_plugins/Cargo.toml | 6 +++--- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c9cf901..9db0032 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.7.0" +version = "0.8.0" authors = ["Hamza Jadid"] description = "A janus client SDK in Rust" readme = "README.md" diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 90ee622..ffe7ed8 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -22,6 +22,6 @@ rand = "0.8.5" tokio = { workspace = true, features = ["time", "macros", "rt-multi-thread"] } [dev-dependencies.jarust] -version = "0.7.0" +version = "0.8.0" path = "../jarust" features = ["audio_bridge_plugin", "echo_test_plugin"] diff --git a/jarust/Cargo.toml b/jarust/Cargo.toml index bbb3364..1ba10c9 100644 --- a/jarust/Cargo.toml +++ b/jarust/Cargo.toml @@ -14,9 +14,9 @@ repository.workspace = true doctest = false [dependencies] -jarust_core = { version = "0.7.0", path = "../jarust_core" } -jarust_interface = { version = "0.7.0", path = "../jarust_interface", default-features = false } -jarust_plugins = { version = "0.7.0", path = "../jarust_plugins", default-features = false } +jarust_core = { version = "0.8.0", path = "../jarust_core" } +jarust_interface = { version = "0.8.0", path = "../jarust_interface", default-features = false } +jarust_plugins = { version = "0.8.0", path = "../jarust_plugins", default-features = false } [features] default = ["use-native-tls"] @@ -40,4 +40,4 @@ serde.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing.workspace = true -jarust_plugins = { version = "0.7.0", path = "../jarust_plugins" } +jarust_plugins = { version = "0.8.0", path = "../jarust_plugins" } diff --git a/jarust_core/Cargo.toml b/jarust_core/Cargo.toml index b95e148..5b66ed6 100644 --- a/jarust_core/Cargo.toml +++ b/jarust_core/Cargo.toml @@ -15,8 +15,8 @@ doctest = false [dependencies] async-trait.workspace = true -jarust_interface = { version = "0.7.0", path = "../jarust_interface" } -jarust_rt = { version = "0.7.0", path = "../jarust_rt" } +jarust_interface = { version = "0.8.0", path = "../jarust_interface" } +jarust_rt = { version = "0.8.0", path = "../jarust_rt" } serde_json.workspace = true serde.workspace = true tokio = { workspace = true, features = ["sync", "time"] } diff --git a/jarust_interface/Cargo.toml b/jarust_interface/Cargo.toml index fc18be8..b8533cc 100644 --- a/jarust_interface/Cargo.toml +++ b/jarust_interface/Cargo.toml @@ -18,7 +18,7 @@ async-trait.workspace = true bytes.workspace = true futures-util.workspace = true indexmap = "2.6.0" -jarust_rt = { version = "0.7.0", path = "../jarust_rt" } +jarust_rt = { version = "0.8.0", path = "../jarust_rt" } rand = "0.8.5" reqwest = { version = "0.12.9", features = ["json"] } serde_json.workspace = true diff --git a/jarust_plugins/Cargo.toml b/jarust_plugins/Cargo.toml index 89d5d42..b82360c 100644 --- a/jarust_plugins/Cargo.toml +++ b/jarust_plugins/Cargo.toml @@ -15,9 +15,9 @@ doctest = false [dependencies] async-trait.workspace = true -jarust_core = { version = "0.7.0", path = "../jarust_core" } -jarust_interface = { version = "0.7.0", path = "../jarust_interface" } -jarust_rt = { version = "0.7.0", path = "../jarust_rt" } +jarust_core = { version = "0.8.0", path = "../jarust_core" } +jarust_interface = { version = "0.8.0", path = "../jarust_interface" } +jarust_rt = { version = "0.8.0", path = "../jarust_rt" } paste = "1.0.15" serde_json.workspace = true serde.workspace = true