From 0715baed8ccc5fbad7a480c5435fc85cb93ce527 Mon Sep 17 00:00:00 2001 From: timvisee Date: Wed, 17 Nov 2021 20:31:22 +0100 Subject: [PATCH] Bump version to 0.2.1 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/config.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9fddd6..0e039b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.2.1 (2021-11-17) + +- Add support for using host names in config address fields +- Handle banned players within `lazymc` based on server `banned-ips.json` +- Update dependencies + ## 0.2.0 (2021-11-15) - Add lockout feature, enable to kick all connecting clients with a message diff --git a/Cargo.lock b/Cargo.lock index 405d375..a7a7a30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -747,7 +747,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lazymc" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 2af4a77..0870607 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.2.0" +version = "0.2.1" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/src/config.rs b/src/config.rs index 69a810e..8795995 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.0"; +const CONFIG_VERSION: &str = "0.2.1"; /// Load config from file, based on CLI arguments. ///