Skip to content

Commit

Permalink
Bump version to 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Nov 28, 2021
1 parent 4d76058 commit d7b601d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.2.6 (2021-11-28)

- Add whitelist support, use server whitelist to prevent unknown users from waking server
- Update dependencies

## 0.2.5 (2021-11-25)

- Add support Minecraft 1.16.3 to 1.17.1 with lobby join method
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.5"
version = "0.2.6"
authors = ["Tim Visee <[email protected]>"]
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 @@ -183,4 +183,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.5"
version = "0.2.6"
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.1";
const CONFIG_VERSION: &str = "0.2.6";

/// Load config from file, based on CLI arguments.
///
Expand Down

0 comments on commit d7b601d

Please sign in to comment.