mirror of
https://github.com/timvisee/lazymc.git
synced 2025-05-18 20:30:23 -07:00
Bump version to 0.2.8
This commit is contained in:
parent
6c3129a8b0
commit
72d58f051f
@ -1,5 +1,13 @@
|
||||
# Changelog
|
||||
|
||||
## 0.2.8 (2023-01-30)
|
||||
|
||||
- Add `freeze_process` feature on Unix platforms to freeze a sleeping server
|
||||
rather than shutting it down.
|
||||
- Update default Minecraft version to 1.19.3
|
||||
- Remove macOS builds from releases, users can compile from source
|
||||
- Update dependencies
|
||||
|
||||
## 0.2.7 (2021-12-13)
|
||||
|
||||
- Update default Minecraft version to 1.18.1
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -920,7 +920,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
||||
|
||||
[[package]]
|
||||
name = "lazymc"
|
||||
version = "0.2.6"
|
||||
version = "0.2.8"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-std",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "lazymc"
|
||||
version = "0.2.6"
|
||||
version = "0.2.8"
|
||||
authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"]
|
||||
license = "GPL-3.0"
|
||||
readme = "README.md"
|
||||
|
@ -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.7"
|
||||
version = "0.2.8"
|
||||
|
@ -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.6";
|
||||
const CONFIG_VERSION: &str = "0.2.8";
|
||||
|
||||
/// Load config from file, based on CLI arguments.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user