diff --git a/CHANGELOG.md b/CHANGELOG.md index 472ded298..a0a7601fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 0.5.8 - Unreleased -[Compare with 0.5.7](https://github.com/EndstoneMC/endstone/compare/v0.5.7...HEAD) +[Compare with 0.5.7.1](https://github.com/EndstoneMC/endstone/compare/v0.5.7.1...HEAD) + +## [0.5.7.1](https://github.com/EndstoneMC/endstone/releases/tag/v0.5.7.1) - 2024-12-24 + +[Compare with 0.5.7](https://github.com/EndstoneMC/endstone/compare/v0.5.7...v0.5.7.1) + +### Fixed + +- Fixed an issue where the `event.is_cancelled` property in the Python binding was not writable. +- Prevented player command execution from being printed to the console if the `PlayerCommandEvent` was already cancelled + by plugins. ## [0.5.7](https://github.com/EndstoneMC/endstone/releases/tag/v0.5.7) - 2024-12-23 diff --git a/include/endstone/endstone.h b/include/endstone/endstone.h index f260bbcee..7374e9d42 100644 --- a/include/endstone/endstone.h +++ b/include/endstone/endstone.h @@ -19,7 +19,7 @@ #define ENDSTONE_VERSION_MAJOR 0 #define ENDSTONE_VERSION_MINOR 5 -#define ENDSTONE_VERSION_PATCH 8 +#define ENDSTONE_VERSION_PATCH 7 #define ENDSTONE_API_VERSION ENDSTONE_TOSTRING(ENDSTONE_VERSION_MAJOR) "." ENDSTONE_TOSTRING(ENDSTONE_VERSION_MINOR) #define ENDSTONE_MAX_PLAYERS 200