From 66e2770c6f7dd3a35325b0652852c07afdcccaa0 Mon Sep 17 00:00:00 2001 From: Jose Storopoli Date: Wed, 2 Oct 2024 05:27:53 -0300 Subject: [PATCH] chore: bump patch version --- Cargo.toml | 8 ++++---- crates/dead-man-switch-tui/Cargo.toml | 4 ++-- crates/dead-man-switch-web/Cargo.toml | 4 ++-- crates/dead-man-switch/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d0e136..a5af387 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,15 @@ [workspace] resolver = "2" members = [ - "crates/dead-man-switch", - "crates/dead-man-switch-tui", - "crates/dead-man-switch-web", + "crates/dead-man-switch", + "crates/dead-man-switch-tui", + "crates/dead-man-switch-web", ] default-members = ["crates/dead-man-switch", "crates/dead-man-switch-tui"] [workspace.package] edition = "2021" -version = "0.4.0" +version = "0.4.1" authors = ["Jose Storopoli "] description = "A simple no-BS Dead Man's Switch" license = "AGPL-3.0-only" diff --git a/crates/dead-man-switch-tui/Cargo.toml b/crates/dead-man-switch-tui/Cargo.toml index c5658e1..80ed183 100644 --- a/crates/dead-man-switch-tui/Cargo.toml +++ b/crates/dead-man-switch-tui/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "dead-man-switch-tui" edition = "2021" -version = "0.4.0" +version = "0.4.1" authors = ["Jose Storopoli "] description = "A simple no-BS Dead Man's Switch Tui Interface" license = "AGPL-3.0-only" readme = "../../README.md" [dependencies] -dead-man-switch = { version = "0.4.0", path = "../dead-man-switch" } +dead-man-switch = { version = "0.4.1", path = "../dead-man-switch" } thiserror = "1" ratatui = "0.28" crossterm = "0.28" diff --git a/crates/dead-man-switch-web/Cargo.toml b/crates/dead-man-switch-web/Cargo.toml index e2cd0cf..ad79b15 100644 --- a/crates/dead-man-switch-web/Cargo.toml +++ b/crates/dead-man-switch-web/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "dead-man-switch-web" edition = "2021" -version = "0.4.0" +version = "0.4.1" authors = ["Jose Storopoli "] description = "A simple no-BS Dead Man's Switch Web Interface" license = "AGPL-3.0-only" readme = "../../README.md" [dependencies] -dead-man-switch = { version = "0.4.0", path = "../dead-man-switch" } +dead-man-switch = { version = "0.4.1", path = "../dead-man-switch" } anyhow = "1.0.89" askama = "0.12.1" axum = "0.7.5" diff --git a/crates/dead-man-switch/Cargo.toml b/crates/dead-man-switch/Cargo.toml index 556f1a9..74d9434 100644 --- a/crates/dead-man-switch/Cargo.toml +++ b/crates/dead-man-switch/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dead-man-switch" edition = "2021" -version = "0.4.0" +version = "0.4.1" authors = ["Jose Storopoli "] description = "A simple no-BS Dead Man's Switch" license = "AGPL-3.0-only"