diff --git a/CMakeLists.txt b/CMakeLists.txt index 340553aaf..b9d34f172 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -94,7 +94,7 @@ if($ENV{BUILD_NUMBER}) endif() set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)") -set(RAW_VERSION_STRING "3.10.1-dev0") +set(RAW_VERSION_STRING "3.10.2-dev0") if(EXISTS "${PROJECT_SOURCE_DIR}/.source_tag") file(READ ${PROJECT_SOURCE_DIR}/.source_tag RAW_VERSION_STRING) elseif(USE_VERSION_FROM_GIT_TAG) diff --git a/ChangeLog b/ChangeLog index 1bff3e637..e70e3e95c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +# 2024-12-16 Version 3.10.1 + +We're happy to present a new release of FreeRDP. +This release contains a few fixes for bugs revealed by checks introduced +with 3.10.0 + +Noteworthy Changes: + * Add FreeBSD as architecture build to our ci (#10980 and others) + * Fix empty include directory creation (#10981) + * fix SIMD detection (#10968) + * improve settings unit test coverage (#10966) + * fix sending server redirection PDU (#10963) + * fix return and use of GetComputerNameA (#10962) + +For a complete and detailed change log since the last release run: +git log 3.10.1...3.10.0 + # 2024-12-12 Version 3.10.0 We're happy to present a new release of FreeRDP. diff --git a/winpr/CMakeLists.txt b/winpr/CMakeLists.txt index 1044f8cd0..e83c6d32e 100644 --- a/winpr/CMakeLists.txt +++ b/winpr/CMakeLists.txt @@ -146,7 +146,7 @@ endif() # Soname versioning set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)") -set(RAW_VERSION_STRING "3.10.1-dev0") +set(RAW_VERSION_STRING "3.10.2-dev0") if(EXISTS "${PROJECT_SOURCE_DIR}/.source_tag") file(READ ${PROJECT_SOURCE_DIR}/.source_tag RAW_VERSION_STRING) elseif(USE_VERSION_FROM_GIT_TAG)