The branch, master has been updated via 1e574af Bump version to 1.3.2 via 621df51 cmake: Set required cmake version to 3.10 from 5996b6d uwrap: Fix binding the getresgid symbol
https://git.samba.org/?p=uid_wrapper.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 1e574af87d4cc6d072974d34def808ab7b726c4f Author: Andreas Schneider <a...@samba.org> Date: Thu Jul 24 11:05:12 2025 +0200 Bump version to 1.3.2 Signed-off-by: Andreas Schneider <a...@samba.org> Reviewed-by: Pavel Filipenský <pfilipen...@samba.org> commit 621df51b564aa73e5f2858b1fa0265de6c9c6fd2 Author: Andreas Schneider <a...@samba.org> Date: Thu Jul 24 11:04:39 2025 +0200 cmake: Set required cmake version to 3.10 Reviewed-by: Pavel Filipenský <pfilipen...@samba.org> ----------------------------------------------------------------------- Summary of changes: CHANGELOG | 3 +++ CMakeLists.txt | 7 +++---- 2 files changed, 6 insertions(+), 4 deletions(-) Changeset truncated at 500 lines: diff --git a/CHANGELOG b/CHANGELOG index 40a33c6..8ac7339 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,9 @@ CHANGELOG ========= +version 1.3.2 (released 2025-07-24) + * Fixed binding the getresgid glibc symbol + version 1.3.1 (released 2024-06-12) * Added support to find libc via LIBC_SO define * Fixed uid_wrapper running with jemalloc compiled binaries diff --git a/CMakeLists.txt b/CMakeLists.txt index 14215c5..45dfd34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,5 @@ # Required cmake version -cmake_minimum_required(VERSION 3.5.0) -cmake_policy(SET CMP0048 NEW) +cmake_minimum_required(VERSION 3.10.0) # Specify search path for CMake modules to be loaded by include() # and find_package() @@ -11,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") include(DefineCMakeDefaults) include(DefineCompilerFlags) -project(uid_wrapper VERSION 1.3.1 LANGUAGES C) +project(uid_wrapper VERSION 1.3.2 LANGUAGES C) # global needed variables set(APPLICATION_NAME ${PROJECT_NAME}) @@ -23,7 +22,7 @@ set(APPLICATION_NAME ${PROJECT_NAME}) # Increment AGE. Set REVISION to 0 # If the source code was changed, but there were no interface changes: # Increment REVISION. -set(LIBRARY_VERSION "0.2.1") +set(LIBRARY_VERSION "0.2.2") set(LIBRARY_SOVERSION "0") # add definitions -- UID Wrapper Repository