diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bdafe6dba..411c91912d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ I am a changelog... do not wait too much from me :D +## v9.0.22 + +- Fixing size of LibC structures for file access to handle iNodes of 64 bits. +This is needed in 32 bits systems that runs in a container or have big disks. +It requires adding \_FILE\_OFFSET\_BITS=64 compile option. + + ## v9.0.21 - Implementing High resolution clock for ARM64 (Used during profiling) diff --git a/CMakeLists.txt b/CMakeLists.txt index da1c0279bf..34359d86fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ extractVCSInformation(GIT_COMMIT_HASH GIT_DESCRIBE GIT_COMMIT_DATE) set(VERSION_MAJOR 9) set(VERSION_MINOR 0) -set(VERSION_PATCH_NUMBER 21) +set(VERSION_PATCH_NUMBER 22) if(BUILD_IS_RELEASE) set(VERSION_PATCH "${VERSION_PATCH_NUMBER}")