Skip to content

Commit

Permalink
chore: Release 0.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leigh-johnson committed Dec 14, 2022
1 parent 849c771 commit 0d18860
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "printnanny-cli"
description = "PrintNanny Command-line Interface"
license = "AGPL-3.0-or-later"
license-file = "LICENSE"
version = "0.30.0"
version = "0.31.0"
authors = ["Leigh Johnson <[email protected]>"]
edition = "2021"
rust-version = "1.63"
Expand All @@ -17,11 +17,11 @@ targets = [
]

[dependencies]
printnanny-dbus = { path = "../dbus", version = "^0.2"}
printnanny-services = {path = "../services", version = "^0.30.0"}
printnanny-nats = {path = "../nats", version = "^0.30.0"}
printnanny-dbus = { path = "../dbus", version = "^0.3"}
printnanny-services = {path = "../services", version = "^0.31.0"}
printnanny-nats = {path = "../nats", version = "^0.31.0"}
printnanny-api-client = "0.113.0"
printnanny-settings = { path = "../settings", version = "^0.2"}
printnanny-settings = { path = "../settings", version = "^0.3"}

figment = { version = "0.10", features = ["env", "json", "toml"] }
anyhow = { version = "1", features = ["backtrace"] }
Expand Down
2 changes: 1 addition & 1 deletion dbus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "printnanny-dbus"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Leigh Johnson <[email protected]>"]
description = "D-bus APIs used by PrintNanny.ai"
Expand Down
8 changes: 4 additions & 4 deletions nats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "printnanny-nats"
description = "Library of MQTT, API, and other services used by PrintNanny.ai"
license = "AGPL-3.0-or-later"
version = "0.30.0"
version = "0.31.0"
authors = ["Leigh Johnson <[email protected]>"]
edition = "2021"
rust-version = "1.63"
Expand Down Expand Up @@ -38,9 +38,9 @@ futures-util = "0.3.25" # Common utilities and extension traits for the f
git-version = "0.3"
log = "0.4"
printnanny-api-client = "0.113.0"
printnanny-dbus = { path = "../dbus", version = "^0.2"}
printnanny-settings = { path = "../settings", version = "^0.2"}
printnanny-services = {path = "../services", version = "^0.30.0"}
printnanny-dbus = { path = "../dbus", version = "^0.3"}
printnanny-settings = { path = "../settings", version = "^0.3"}
printnanny-services = {path = "../services", version = "^0.31.0"}
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
Expand Down
6 changes: 3 additions & 3 deletions services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "printnanny-services"
description = "Library of MQTT, API, and other services used by PrintNanny"
license = "AGPL-3.0-or-later"
version = "0.30.0"
version = "0.31.0"
authors = ["Leigh Johnson <[email protected]>"]
edition = "2021"
rust-version = "1.63"
Expand All @@ -24,8 +24,8 @@ lazy_static = "1" # A macro for declaring lazily evaluated statics in
log = "0.4"
parking_lot = "0.12.1" # More compact and efficient implementations of the standard synchronization primitives.
printnanny-api-client = "0.113.0"
printnanny-dbus = { path = "../dbus", version = "^0.2"}
printnanny-settings = { path = "../settings", version = "^0.2"}
printnanny-dbus = { path = "../dbus", version = "^0.3"}
printnanny-settings = { path = "../settings", version = "^0.3"}
procfs = "0.12"
rustls = "0.19"
tokio-rustls = "0.22"
Expand Down
4 changes: 2 additions & 2 deletions settings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "printnanny-settings"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Leigh Johnson <[email protected]>"]
license = "AGPL-3.0-or-later"
Expand All @@ -22,7 +22,7 @@ glob = "0.3.0"

log = "0.4"
toml = "0.5"
printnanny-dbus = { path = "../dbus", version = "^0.2"}
printnanny-dbus = { path = "../dbus", version = "^0.3"}
serde_json = "1"
sys-info = "0.9"
regex = "1.7.0" # An implementation of regular expressions for Rust.
Expand Down

0 comments on commit 0d18860

Please sign in to comment.