Bump version to 0.2.1
This commit is contained in:
@@ -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
2
Cargo.lock
generated
@@ -747,7 +747,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
||||
|
||||
[[package]]
|
||||
name = "lazymc"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bytes",
|
||||
|
@@ -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"
|
||||
|
@@ -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.
|
||||
///
|
||||
|
Reference in New Issue
Block a user