diff --git a/CHANGELOG.md b/CHANGELOG.md index 67140940d1..05c5008ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change log +## v10.1.0 +* Fixing undefined behaviors that Clang 15 removes by @tesonep in https://github.com/pharo-project/pharo-vm/pull/731 +* Fix ‘doReport’ to take into account that ‘fopen’ can return NULL by @Rinzwind in https://github.com/pharo-project/pharo-vm/pull/739 +* Change custom command in ‘vmmaker.cmake’ to take into account that the ‘CMAKE_CURRENT_BINARY_DIR_TO_OUT’ can contain spaces by @Rinzwind in https://github.com/pharo-project/pharo-vm/pull/738 +* Integrating new format by @tesonep in https://github.com/pharo-project/pharo-vm/pull/734 + + New Contributors +* @Rinzwind made their first contribution in https://github.com/pharo-project/pharo-vm/pull/739 + +**Full Changelog**: https://github.com/pharo-project/pharo-vm/compare/v10.0.9...v10.1.0 + ## v10.0.9 * Improves in PermSpace by @tesonep in https://github.com/pharo-project/pharo-vm/pull/684 diff --git a/CMakeLists.txt b/CMakeLists.txt index de747020d3..0b48cd6411 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,8 +51,8 @@ include(cmake/versionExtraction.cmake) extractVCSInformation(GIT_COMMIT_HASH GIT_DESCRIBE GIT_COMMIT_DATE) set(VERSION_MAJOR 10) -set(VERSION_MINOR 0) -set(VERSION_PATCH_NUMBER 9) +set(VERSION_MINOR 1) +set(VERSION_PATCH_NUMBER 0) if(BUILD_IS_RELEASE) set(VERSION_PATCH "${VERSION_PATCH_NUMBER}")