Skip to content

Commit

Permalink
Update versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
tekjar committed Mar 29, 2020
1 parent 99cdfb9 commit 7588657
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rumq-broker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rumq-broker"
version = "0.1.0-alpha.7"
version = "0.1.0-alpha.8"
description = "Library for embeddable mqtt broker"
license = "MIT"
repository = "https://github.com/tekjar/rumq"
Expand All @@ -14,7 +14,7 @@ tokio = { version = "0.2", features = ["full"] }
tokio-util = { version = "0.3", features = ["codec"] }
futures-util = { version = "0.3", features = ["sink"] }
tokio-rustls = "0.13"
rumq-core = { path = "../rumq-core", version = "0.1.0-alpha.7" }
rumq-core = { path = "../rumq-core", version = "0.1.0-alpha.8" }
derive_more = { version = "0.99", default-features = false, features = ["from"] }
log = "0.4"
serde = { version = "1", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions rumq-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rumq-client"
version = "0.1.0-alpha.8"
version = "0.1.0-alpha.9"
description = "An efficeint and robust mqtt client for your connected devices"
license = "MIT"
repository = "https://github.com/tekjar/rumq"
Expand All @@ -17,7 +17,7 @@ futures-util = { version = "0.3", features = ["sink"] }
async-stream = "0.2"
webpki = "0.21"
tokio-rustls = "0.13"
rumq-core = { path = "../rumq-core", version = "0.1.0-alpha.7" }
rumq-core = { path = "../rumq-core", version = "0.1.0-alpha.8" }
log = "0.4"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rumq-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rumq-core"
version = "0.1.0-alpha.7"
version = "0.1.0-alpha.8"
description = "Serializes and deserializes mqtt byte stream"
license = "MIT"
repository = "https://github.com/tekjar/rumq"
Expand Down

2 comments on commit 7588657

@therealprof
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tekjar Wouldn't it be better (for now) to keep the versions in lockstep to not confuse the hell out of people? Or at least use the version of rumq-core instead of rumq-client. 😅

@tekjar
Copy link
Contributor Author

@tekjar tekjar commented on 7588657 Mar 30, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@therealprof Yeah this confuses me (sometimes) too. rumq-core is the base crate where version changes forces everything upwards to update their versions as well.

Or at least use the version of rumq-core instead of rumq-client

Hmm.. Tagging with rumq-core is the right thing to do I guess. But most of the people use rumq-client (which might again cause confusion). I'll go with your suggestion :)

Please sign in to comment.