Skip to content

Commit

Permalink
R7 (#274)
Browse files Browse the repository at this point in the history
* Update versions for release

* Fix version

* Fix versin in mqttlog

Co-authored-by: tekjar <[email protected]>
  • Loading branch information
Ravi Teja and tekjar authored May 14, 2021
1 parent 3789131 commit 72bff4d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion mqttbytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mqttbytes"
version = "0.2.1"
version = "0.3.0"
readme = "README.md"
authors = ["tekjar <[email protected]>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions rumqttc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rumqttc"
version = "0.5.0"
version = "0.6.0"
description = "An efficient and robust mqtt client for your connected devices"
license = "Apache-2.0"
repository = "https://github.com/bytebeamio/rumqtt"
Expand All @@ -23,7 +23,7 @@ webpki = "0.21"
tokio-rustls = "0.22"
async-tungstenite = { version = "0.11.0", default-features = false, features = ["tokio-rustls"], optional = true }
ws_stream_tungstenite = { version = "0.4.0", default-features = false, features = ["tokio_io"], optional = true }
mqttbytes = { path = "../mqttbytes", version = "0.2" }
mqttbytes = { path = "../mqttbytes", version = "0.3" }
pollster = "0.2"
async-channel = "1.5"
log = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions rumqttd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rumqttd"
description = "Distributed, embeddable mqtt broker library"
license = "Apache-2.0"
version = "0.5.0"
version = "0.6.0"
authors = ["tekjar <[email protected]>"]
edition = "2018"
keywords = ["mqtt", "broker", "iot", "kafka", "nats"]
Expand All @@ -21,8 +21,8 @@ path = "src/bin.rs"
prof = ["pprof"]

[dependencies]
rumqttlog = { path = "../rumqttlog", version = "0.5"}
mqttbytes = { path = "../mqttbytes", version = "0.2" }
rumqttlog = { path = "../rumqttlog", version = "0.6"}
mqttbytes = { path = "../mqttbytes", version = "0.3" }
tokio = { version = "1.0", features = ["full"] }
tokio-rustls = "0.22"
serde = { version = "1", features = ["derive"] }
Expand All @@ -37,4 +37,4 @@ futures-util = "0.3.8"
pprof = { version = "0.4", features = ["flamegraph", "protobuf"], optional = true }

[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.3"
jemallocator = "0.3"
4 changes: 2 additions & 2 deletions rumqttlog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rumqttlog"
version = "0.5.0"
version = "0.6.0"
authors = ["tekjar <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -11,7 +11,7 @@ description = "kafka inspired rumqtt's mqtt commitlog"
byteorder = "1"
memmap = "0.7"
bytes = "1.0"
mqttbytes = { path = "../mqttbytes", version = "0.2" }
mqttbytes = { path = "../mqttbytes", version = "0.3" }
serde = { version = "1", features = ["derive", "rc"] }
segments = "0.1"
thiserror = "1"
Expand Down

0 comments on commit 72bff4d

Please sign in to comment.