Skip to content

Commit

Permalink
chore(release): bump jarust version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghamza-Jd committed Nov 7, 2024
1 parent 0676f5b commit e09b3ec
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
8 changes: 4 additions & 4 deletions jarust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions jarust_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion jarust_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions jarust_plugins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e09b3ec

Please sign in to comment.