Bump version to 0.2.4

This commit is contained in:
timvisee 2021-11-24 14:05:27 +01:00
parent 6b23490919
commit 0ba46caf5c
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
4 changed files with 12 additions and 3 deletions

View File

@ -1,5 +1,14 @@
# Changelog # 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) ## 0.2.3 (2021-11-22)
- Add support for `PROXY` header to notify Minecraft server of real client IP - Add support for `PROXY` header to notify Minecraft server of real client IP

2
Cargo.lock generated
View File

@ -786,7 +786,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]] [[package]]
name = "lazymc" name = "lazymc"
version = "0.2.3" version = "0.2.4"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-std", "async-std",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lazymc" name = "lazymc"
version = "0.2.3" version = "0.2.4"
authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"]
license = "GPL-3.0" license = "GPL-3.0"
readme = "README.md" readme = "README.md"

View File

@ -170,4 +170,4 @@ command = "java -Xmx1G -Xms1G -jar server.jar --nogui"
[config] [config]
# lazymc version this configuration is for. # lazymc version this configuration is for.
# Don't change unless you know what you're doing. # Don't change unless you know what you're doing.
version = "0.2.3" version = "0.2.4"