Skip to content

Commit 72d58f0

Browse files
committed
Bump version to 0.2.8
1 parent 6c3129a commit 72d58f0

5 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.2.8 (2023-01-30)
4+
5+
- Add `freeze_process` feature on Unix platforms to freeze a sleeping server
6+
rather than shutting it down.
7+
- Update default Minecraft version to 1.19.3
8+
- Remove macOS builds from releases, users can compile from source
9+
- Update dependencies
10+
311
## 0.2.7 (2021-12-13)
412

513
- Update default Minecraft version to 1.18.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lazymc"
3-
version = "0.2.6"
3+
version = "0.2.8"
44
authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"]
55
license = "GPL-3.0"
66
readme = "README.md"

res/lazymc.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,4 @@ command = "java -Xmx1G -Xms1G -jar server.jar --nogui"
187187
[config]
188188
# lazymc version this configuration is for.
189189
# Don't change unless you know what you're doing.
190-
version = "0.2.7"
190+
version = "0.2.8"

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::util::serde::to_socket_addrs;
1515
pub const CONFIG_FILE: &str = "lazymc.toml";
1616

1717
/// Configuration version user should be using, or warning will be shown.
18-
const CONFIG_VERSION: &str = "0.2.6";
18+
const CONFIG_VERSION: &str = "0.2.8";
1919

2020
/// Load config from file, based on CLI arguments.
2121
///

0 commit comments

Comments
 (0)