diff --git a/CMakeLists.txt b/CMakeLists.txt index d48cb600..e82f24ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # -set(PROJECT_VERSION 2.5.2) +set(PROJECT_VERSION 2.6.0) if(EXISTS "/etc/debian_version") cmake_minimum_required(VERSION 3.7.2) diff --git a/ChangeLog b/ChangeLog index 4cebfb75..c17af561 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,14 @@ Unreleased +------------------------------------------------------------------------ + +2022-03-21 v2.6.0 ------------------------------------------------------------------------ * Fix: posix/proc don't allow users of this filter to progress until the proc waiter thread has completed initialisation. * Fix: Address multiple thread synchronisation issues by using a - single global mutex to synchronise the kqueue list, and kqueue + single global mutex to synchronise the kqueue list and kqueue file descriptor map, and per kqueue mutexes which are locked for the duration of copyin and copyout. The per filter knote mutex was removed with this change as it's no longer needed.