Bump version to 0.2.1

This commit is contained in:
timvisee
2021-11-17 20:31:22 +01:00
parent 1f4ec11ad1
commit 0715baed8c
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 0.2.1 (2021-11-17)
- Add support for using host names in config address fields
- Handle banned players within `lazymc` based on server `banned-ips.json`
- Update dependencies
## 0.2.0 (2021-11-15)
- Add lockout feature, enable to kick all connecting clients with a message

2
Cargo.lock generated
View File

@@ -747,7 +747,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "lazymc"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"anyhow",
"bytes",

View File

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

View File

@@ -15,7 +15,7 @@ use crate::util::serde::to_socket_addrs;
pub const CONFIG_FILE: &str = "lazymc.toml";
/// Configuration version user should be using, or warning will be shown.
const CONFIG_VERSION: &str = "0.2.0";
const CONFIG_VERSION: &str = "0.2.1";
/// Load config from file, based on CLI arguments.
///