diff --git a/CHANGELOG.md b/CHANGELOG.md index 50ce00c..b728e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.2.11 (2024-03-16) + +- Add support for Minecraft 1.20.3 and 1.20.4 +- Improve error handling of parsing server favicon +- Fix typo in log message +- Update dependencies + ## 0.2.10 (2023-02-20) - Do not report an error when server exits with status code 143 diff --git a/Cargo.lock b/Cargo.lock index e3e2503..00cdf22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -699,7 +699,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lazymc" -version = "0.2.10" +version = "0.2.11" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index cdfef5a..4a80820 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.2.10" +version = "0.2.11" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/README.md b/README.md index 8718e33..25ba825 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ https://user-images.githubusercontent.com/856222/141378688-882082be-9efa-4cfe-81 ## Features - Very efficient, lightweight & low-profile (~3KB RAM) -- Supports Minecraft Java Edition 1.7.2+, supports modded (e.g. Forge, FTB) +- Supports Minecraft Java Edition 1.20.3+ - Configure joining client occupation methods: - Hold: hold clients when server starts, relay when ready, without them noticing - Kick: kick clients when server starts, with a starting message diff --git a/res/lazymc.toml b/res/lazymc.toml index 65c9047..8bb37b8 100644 --- a/res/lazymc.toml +++ b/res/lazymc.toml @@ -187,4 +187,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.10" +version = "0.2.11"