Skip to content

Commit a290a40

Browse files
authored
Merge pull request #746 from pharo-project/preparing-release-v10.1.0
Preparing release v10.1.0
2 parents 9e3738a + 8c4b3fb commit a290a40

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change log
22

3+
## v10.1.0
4+
* Fixing undefined behaviors that Clang 15 removes by @tesonep in https://github.com/pharo-project/pharo-vm/pull/731
5+
* Fix ‘doReport’ to take into account that ‘fopen’ can return NULL by @Rinzwind in https://github.com/pharo-project/pharo-vm/pull/739
6+
* 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
7+
* Integrating new format by @tesonep in https://github.com/pharo-project/pharo-vm/pull/734
8+
9+
New Contributors
10+
* @Rinzwind made their first contribution in https://github.com/pharo-project/pharo-vm/pull/739
11+
12+
**Full Changelog**: https://github.com/pharo-project/pharo-vm/compare/v10.0.9...v10.1.0
13+
314
## v10.0.9
415

516
* Improves in PermSpace by @tesonep in https://github.com/pharo-project/pharo-vm/pull/684

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ include(cmake/versionExtraction.cmake)
5151
extractVCSInformation(GIT_COMMIT_HASH GIT_DESCRIBE GIT_COMMIT_DATE)
5252

5353
set(VERSION_MAJOR 10)
54-
set(VERSION_MINOR 0)
55-
set(VERSION_PATCH_NUMBER 9)
54+
set(VERSION_MINOR 1)
55+
set(VERSION_PATCH_NUMBER 0)
5656

5757
if(BUILD_IS_RELEASE)
5858
set(VERSION_PATCH "${VERSION_PATCH_NUMBER}")

0 commit comments

Comments
 (0)