diff --git a/CHANGELOG.md b/CHANGELOG.md index 64015d0..3570043 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.2.4 (2021-11-24) + +- Fix status response issues with missing server icon, fall back to default icon +- Fix incorrect UUID for players in lobby logic +- Make server directory relative to configuration file path +- Assume SIGTERM exit code for server process to be successful on Unix +- Update features in README +- Update dependencies + ## 0.2.3 (2021-11-22) - Add support for `PROXY` header to notify Minecraft server of real client IP diff --git a/Cargo.lock b/Cargo.lock index d701bb8..a1ef194 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,7 +786,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lazymc" -version = "0.2.3" +version = "0.2.4" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 4a0938a..98e91ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.2.3" +version = "0.2.4" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/res/lazymc.toml b/res/lazymc.toml index 315d2dc..55ce7ca 100644 --- a/res/lazymc.toml +++ b/res/lazymc.toml @@ -170,4 +170,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.3" +version = "0.2.4"