From 4a3644a125bb78d48a1c1b0ab5eafbc7af7ce328 Mon Sep 17 00:00:00 2001 From: Guille Polito Date: Fri, 28 Jun 2024 09:45:27 +0200 Subject: [PATCH 1/2] Bump version to 10.3.0 in CMake --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}") From 9eee7dceee70c02e4e29ef49fc675d057e042ed2 Mon Sep 17 00:00:00 2001 From: Guille Polito Date: Fri, 28 Jun 2024 09:48:55 +0200 Subject: [PATCH 2/2] Update CHANGELOG to version 10.3.0 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) 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