diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cdba4c3..bc2116ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ if(MSVC) endif() # Hardcoded version. Don't forget to change this when merging upstream! -set(GIT_VERSION "0.11.3-libcryfs") +set(GIT_VERSION "0.11.4-libcryfs") add_subdirectory(vendor EXCLUDE_FROM_ALL) add_subdirectory(src) diff --git a/ChangeLog.txt b/ChangeLog.txt index 46564c3f..d2ff7e0d 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,8 @@ +Version 0.11.4 +--------------- +* Fixed build issue with GCC 13 (see https://github.com/cryfs/cryfs/pull/448 ) +* Fixed build issue with Python 3.12 (see https://github.com/cryfs/cryfs/issues/459 ) + Version 0.11.3 --------------- * Fixed build issue on systems with libfmt 9.0 (see https://github.com/cryfs/cryfs/issues/432 ) diff --git a/src/cpp-utils/thread/LeftRight.h b/src/cpp-utils/thread/LeftRight.h index 65ddba75..7b10458a 100644 --- a/src/cpp-utils/thread/LeftRight.h +++ b/src/cpp-utils/thread/LeftRight.h @@ -4,6 +4,7 @@ #include #include #include +#include namespace cpputils {