diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdb91c02f..39cc10df07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change log +## v10.3.0 + +* New harmonize rule by @RenaudFondeur in https://github.com/pharo-project/pharo-vm/pull/817 +* Ignoring EAGAIN in epoll_wait by @tesonep in https://github.com/pharo-project/pharo-vm/pull/818 +* Extend macOS implementation of SqueakSSL plugin to support setting a certificate on the SSL session context by @Rinzwind in https://github.com/pharo-project/pharo-vm/pull/816 +* Adding macro for win32. by @tesonep in https://github.com/pharo-project/pharo-vm/pull/814 + ## v10.2.1 * Adding the missing tty.c file in the packaging. by @tesonep in https://github.com/pharo-project/pharo-vm/pull/771 diff --git a/CMakeLists.txt b/CMakeLists.txt index 47f8d26ba3..6f981c3d41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,8 +52,8 @@ include(cmake/versionExtraction.cmake) extractVCSInformation(GIT_COMMIT_HASH GIT_DESCRIBE GIT_COMMIT_DATE) set(VERSION_MAJOR 10) -set(VERSION_MINOR 2) -set(VERSION_PATCH_NUMBER 1) +set(VERSION_MINOR 3) +set(VERSION_PATCH_NUMBER 0) if(BUILD_IS_RELEASE) set(VERSION_PATCH "${VERSION_PATCH_NUMBER}")