diff --git a/CHANGELOG.md b/CHANGELOG.md index e0de0d8..37319ac 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,3 +56,7 @@ ## 1.3.3 - Added the ability to configure the library through CMake + +## 1.3.4 + +- A critical linear space calculation bug that could cause data corruption was fixed diff --git a/CMakeLists.txt b/CMakeLists.txt index 604f866..65af5e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) project(lfbb - VERSION 1.3.3 + VERSION 1.3.4 LANGUAGES C CXX ) diff --git a/lfbb/inc/lfbb.h b/lfbb/inc/lfbb.h index 5723a55..055de29 100755 --- a/lfbb/inc/lfbb.h +++ b/lfbb/inc/lfbb.h @@ -4,8 +4,8 @@ * c11 suitable for both low-end microcontrollers all the way * to HPC machines. Lock-free for single consumer single * producer scenarios. - * @version 1.3.3 - * @date 10. August 2023 + * @version 1.3.4 + * @date 7. December 2023 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.3.3 + * Version: 1.3.4 **************************************************************/ /************************** INCLUDE ***************************/ diff --git a/lfbb/src/lfbb.c b/lfbb/src/lfbb.c index 02c96da..a1d9753 100755 --- a/lfbb/src/lfbb.c +++ b/lfbb/src/lfbb.c @@ -4,8 +4,8 @@ * c11 suitable for both low-end microcontrollers all the way * to HPC machines. Lock-free for single consumer single * producer scenarios. - * @version 1.3.3 - * @date 10. August 2023 + * @version 1.3.4 + * @date 7. December 2023 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.3.3 + * Version: 1.3.4 **************************************************************/ /************************** INCLUDE ***************************/