diff --git a/Makefile b/Makefile index 2d89e7e..e1d3272 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ endif # for internal functions, so let's "ignore" it. CFLAGS+=-Wno-error=deprecated-declarations -VERSION:=0.10.1 +VERSION:=0.10.2 .PHONY: ./build/gmcpil diff --git a/res/doc/gmcpil/CHANGELOG.txt b/res/doc/gmcpil/CHANGELOG.txt index 1379d0d..c1a08aa 100644 --- a/res/doc/gmcpil/CHANGELOG.txt +++ b/res/doc/gmcpil/CHANGELOG.txt @@ -1,4 +1,7 @@ -v0.10.1 +v0.10.2: + + Fixed bug that mixed HUD and username settings. + +v0.10.1: + Added Gallium HUD options to the Settings tab. v0.10.0: diff --git a/src/include/mcpil.h b/src/include/mcpil.h index 72f8bca..25a4b33 100644 --- a/src/include/mcpil.h +++ b/src/include/mcpil.h @@ -29,8 +29,8 @@ #define GMCPIL_MAJOR 0 #define GMCPIL_MINOR 10 -#define GMCPIL_PATCH 0 -#define GMCPIL_VERSION "v0.10.1" +#define GMCPIL_PATCH 2 +#define GMCPIL_VERSION "v0.10.2" #define STR(str) #str #define SAFE_ATOI(str) strtol(str ? str : "", NULL, 10)