From 45105861693278e64d12ecd90a53839ad1132f4e Mon Sep 17 00:00:00 2001 From: timvisee Date: Mon, 15 Nov 2021 21:24:13 +0100 Subject: [PATCH] Bump version to 0.2.0 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c17be7..c9fddd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.2.0 (2021-11-15) + +- Add lockout feature, enable to kick all connecting clients with a message +- Add option to configure list of join methods to occupy client with while server is starting (kick, hold, forward, lobby) +- Add lobby join method, keeps client in lobby world on emulated server, teleports to real server when it is ready (highly experimental) +- Add forward join method to forward (proxy) client to other host while server is starting +- Restructure `lazymc.toml` configuration +- Increase packet reading buffer size to speed things up +- Add support for Minecraft packet compression +- Show warning if config version is outdated or invalid +- Various fixes and improvements + ## 0.1.3 (2021-11-15) - Fix binary release diff --git a/Cargo.lock b/Cargo.lock index b1b2012..0d41237 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -620,7 +620,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "lazymc" -version = "0.1.3" +version = "0.2.0" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 2c3bf58..e931492 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.1.3" +version = "0.2.0" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md"