Skip to content

Commit

Permalink
Bump version to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Jan 30, 2023
1 parent 6c3129a commit 72d58f0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion res/lazymc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit 72d58f0

Please sign in to comment.