Bump version to 0.2.0

This commit is contained in:
timvisee
2021-11-15 21:24:13 +01:00
parent 73d0c86780
commit 4510586169
3 changed files with 14 additions and 2 deletions

View File

@@ -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

2
Cargo.lock generated
View File

@@ -620,7 +620,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazymc"
version = "0.1.3"
version = "0.2.0"
dependencies = [
"anyhow",
"bytes",

View File

@@ -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"