diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a97119..d93a161 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.2.9 (2023-02-14) + +- Fix dropping all connections when `server.drop_banned_ips` was enabled +- Update dependencies + ## 0.2.8 (2023-01-30) - Add `freeze_process` feature on Unix platforms to freeze a sleeping server diff --git a/Cargo.lock b/Cargo.lock index 0fada95..ddefcaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -926,7 +926,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lazymc" -version = "0.2.8" +version = "0.2.9" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 22f1664..0b66269 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazymc" -version = "0.2.8" +version = "0.2.9" authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"] license = "GPL-3.0" readme = "README.md" diff --git a/res/lazymc.toml b/res/lazymc.toml index a6455d0..0c4b9a6 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.8" +version = "0.2.9"