diff --git a/CHANGELOG.md b/CHANGELOG.md index f955230..04a3ccc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # MzingaCpp ChangeLog # +## v0.9.2 ## + +* Fixed bug with the stack size being too small + ## v0.9.1 ## * Fixed a bug with generating the correct move notation diff --git a/CMakeLists.txt b/CMakeLists.txt index 9842e2d..f88cefb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16.0) -project(mzingacpp VERSION 0.9.1) +project(mzingacpp VERSION 0.9.2) add_executable(mzingacpp) diff --git a/include/Constants.h b/include/Constants.h index a1dc6f0..dffe00d 100644 --- a/include/Constants.h +++ b/include/Constants.h @@ -8,7 +8,7 @@ namespace MzingaCpp { -constexpr const char *IdString = "id MzingaCpp 0.9.1"; +constexpr const char *IdString = "id MzingaCpp 0.9.2"; constexpr const char *CapabilitiesString = "Mosquito;Ladybug;Pillbug"; constexpr const char *OkString = "ok";