diff --git a/CHANGELOG.md b/CHANGELOG.md index 511ae27..3fe9a2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,14 @@ #### Version history: -###### 0.7.3 +###### 0.8.0 + - Implement support for multipacket responses - Add support to Valve style rcon authentication - Change maximum packet size to correct value (4096 -> 4106) - Print auth failed message to stderr instead of stdout - Fail immediately if received packet size is out of spec - Return proper exit code from run_terminal_mode() - Add error messages to rcon_command() function - + ###### 0.7.2 - Quit gracefully when Ctrl-D or Ctrl+C is pressed - Remove "exit" and "quit" as quitting commands diff --git a/mcrcon.1 b/mcrcon.1 index dd71dd9..a16f1ef 100644 --- a/mcrcon.1 +++ b/mcrcon.1 @@ -1,7 +1,7 @@ .\" Process this file with .\" groff -man -Tascii mcrcon.1 .\" -.TH MCRCON 1 "November 2024" "Version 0.7.3" +.TH MCRCON 1 "November 2024" "Version 0.8.0" .SH NAME mcrcon \- send rcon commands to a Minecraft server .SH SYNOPSIS diff --git a/mcrcon.c b/mcrcon.c index aad8f17..d1d2e7c 100644 --- a/mcrcon.c +++ b/mcrcon.c @@ -41,7 +41,7 @@ #include #endif -#define VERSION "0.7.3" +#define VERSION "0.8.0" #define IN_NAME "mcrcon" #define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"