diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d1c599..2bed50a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.2.6 (2021-11-28) + +- Add whitelist support, use server whitelist to prevent unknown users from waking server +- Update dependencies + ## 0.2.5 (2021-11-25) - Add support Minecraft 1.16.3 to 1.17.1 with lobby join method diff --git a/Cargo.lock b/Cargo.lock index 51d30a2..8f5d484 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,7 +786,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lazymc" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 3c729c4..8a3ac64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.2.5" +version = "0.2.6" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/res/lazymc.toml b/res/lazymc.toml index d0699a2..da25b35 100644 --- a/res/lazymc.toml +++ b/res/lazymc.toml @@ -183,4 +183,4 @@ command = "java -Xmx1G -Xms1G -jar server.jar --nogui" [config] # lazymc version this configuration is for. # Don't change unless you know what you're doing. -version = "0.2.5" +version = "0.2.6" diff --git a/src/config.rs b/src/config.rs index 598039d..c9e362a 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.1"; +const CONFIG_VERSION: &str = "0.2.6"; /// Load config from file, based on CLI arguments. ///