From f02217abd32ea8aa15575e9b0f16a28f25111b2a Mon Sep 17 00:00:00 2001 From: "[object Object]" Date: Fri, 30 Dec 2022 13:10:14 -0800 Subject: [PATCH] Update version number (should be 1 above current release) Also update deps --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- src/config.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00ba403..4842268 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -894,7 +894,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lazymc" -version = "0.2.6" +version = "0.2.8" dependencies = [ "anyhow", "async-std", @@ -1163,9 +1163,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" +checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" [[package]] name = "os_str_bytes" diff --git a/Cargo.toml b/Cargo.toml index 43fe6a6..6811b3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.2.6" +version = "0.2.8" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/src/config.rs b/src/config.rs index ddabfe0..e6eaddf 100644 --- a/src/config.rs +++ b/src/config.rs @@ -15,7 +15,7 @@ use crate::util::serde::to_socket_addrs; pub const CONFIG_FILE: &str = "lazymc.toml"; /// Configuration version user should be using, or warning will be shown. -const CONFIG_VERSION: &str = "0.2.6"; +const CONFIG_VERSION: &str = "0.2.8"; /// Load config from file, based on CLI arguments. ///