summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Müller <neikos@neikos.email>2023-01-05 11:09:14 +0100
committerMarcel Müller <neikos@neikos.email>2023-01-05 11:09:14 +0100
commitd2429e89190ad319502e983fa8032bba154f04d5 (patch)
tree009f5ca1343c639f3d25e9676c771777891fb388
parent9b75ff5d934d95f0eeded9d667f684eed2566e8b (diff)
Bump version to 0.3.0v0.3.0
Signed-off-by: Marcel Müller <neikos@neikos.email>
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml4
-rw-r--r--mqtt-format/Cargo.toml2
-rw-r--r--mqtt-tester/Cargo.toml2
4 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 060f9e1..859c0fc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -221,7 +221,7 @@ dependencies = [
[[package]]
name = "cloudmqtt"
-version = "0.2.0"
+version = "0.3.0"
dependencies = [
"arc-swap",
"async-trait",
@@ -592,7 +592,7 @@ dependencies = [
[[package]]
name = "mqtt-format"
-version = "0.2.0"
+version = "0.3.0"
dependencies = [
"futures",
"nom",
diff --git a/Cargo.toml b/Cargo.toml
index 3de15bb..758ab93 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cloudmqtt"
-version = "0.2.0"
+version = "0.3.0"
edition = "2021"
authors = ["Marcel Müller <neikos@neikos.email>"]
description = "A pure Rust MQTT client and server library"
@@ -35,7 +35,7 @@ bytes = "1.3.0"
clap = { version = "4.0.32", optional = true, features = ["derive"] }
dashmap = "5.4.0"
futures = "0.3.25"
-mqtt-format = { version = "0.2.0", path = "mqtt-format", features = ["yoke"] }
+mqtt-format = { version = "0.3.0", path = "mqtt-format", features = ["yoke"] }
nom = { version = "7.1.2" }
thiserror = "1.0.38"
tokio = { version = "1.23.0", default-features = false, features = [
diff --git a/mqtt-format/Cargo.toml b/mqtt-format/Cargo.toml
index 1ccc580..4aa211a 100644
--- a/mqtt-format/Cargo.toml
+++ b/mqtt-format/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mqtt-format"
-version = "0.2.0"
+version = "0.3.0"
edition = "2021"
description = "A pure Rust MQTT packet parser and serializer"
readme = "README.md"
diff --git a/mqtt-tester/Cargo.toml b/mqtt-tester/Cargo.toml
index 46456ac..b6d1f41 100644
--- a/mqtt-tester/Cargo.toml
+++ b/mqtt-tester/Cargo.toml
@@ -11,7 +11,7 @@ bytes = "1.1.0"
clap = { version = "3.2.8", features = ["derive"] }
futures = "0.3"
miette = { version = "5.1.1", features = ["fancy"] }
-mqtt-format = { path = "../mqtt-format", version = "0.2.0" }
+mqtt-format = { path = "../mqtt-format", version = "0.3.0" }
nom = { version = "7.1.2" }
textwrap = "0.15.0"
tokio = { version = "1.20", features = ["macros", "process", "rt", "rt-multi-thread", "io-util", "time"] }