From 2af20945ccd555b479f83b68c0f4552e9ddbe21c Mon Sep 17 00:00:00 2001 From: timvisee Date: Sun, 14 Nov 2021 12:54:34 +0100 Subject: [PATCH] Bump version to 0.1.1 --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- TODO.md | 1 + 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0648807..3d7164b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.1 (2021-11-14) + +- Make server sleeping errors more descriptive +- Add server quit cooldown period, intended to prevent RCON errors due to RCON + server thread something quitting after main server +- Rewrite `enable-status = true` in `server.properties` +- Rewrite `prevent-proxy-connections = false` in `server.properties` if + Minecraft server has non-loopback address (other public IP) +- Add compile from source instructions to README +- Add Windows instructions to README +- Update dependencies +- Various fixes and improvements + ## 0.1.0 (2021-11-11) - Initial release diff --git a/Cargo.lock b/Cargo.lock index d3edb0c..f85d3fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -614,7 +614,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "lazymc" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 643a1d9..e9f7f4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.1.0" +version = "0.1.1" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/TODO.md b/TODO.md index cc25ca0..0e58b0c 100644 --- a/TODO.md +++ b/TODO.md @@ -7,6 +7,7 @@ ## Nice to have +- Use server whitelist/blacklist - Console error if server already started on port, not through `lazymc` - Kick with message if proxy-to-server connection fails for new client. - Test configuration on start (server dir exists, command not empty)