From 3e47c482dad4f8cec1a740da7e011b987cfad9fc Mon Sep 17 00:00:00 2001 From: Djordje Nedic Date: Tue, 6 Jun 2023 00:34:38 +0200 Subject: [PATCH] Release 1.3.2 --- CHANGELOG.md | 4 ++++ CMakeLists.txt | 2 +- lfbb/inc/lfbb.h | 6 +++--- lfbb/src/lfbb.c | 6 +++--- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0e2725..56850f3 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,3 +48,7 @@ ## 1.3.1 - A critical bug where valid data would be invalidated if the write ended exactly on the end of the buffer was fixed - [@KOLANICH](https://github.com/KOLANICH) in [lfbb_cpp](https://github.com/DNedic/lfbb_cpp) + +## 1.3.2 + +- Performance and code conciseness improvements diff --git a/CMakeLists.txt b/CMakeLists.txt index 4395a73..1d540b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) project(lfbb - VERSION 1.3.1 + VERSION 1.3.2 LANGUAGES C CXX ) diff --git a/lfbb/inc/lfbb.h b/lfbb/inc/lfbb.h index 20ea364..22473cd 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.1 - * @date 21. September 2022 + * @version 1.3.2 + * @date 6. June 2023 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.3.1 + * Version: 1.3.2 **************************************************************/ /************************** INCLUDE ***************************/ diff --git a/lfbb/src/lfbb.c b/lfbb/src/lfbb.c index 6fdca0c..800312b 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.1 - * @date 21. September 2022 + * @version 1.3.2 + * @date 6. June 2023 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.3.1 + * Version: 1.3.2 **************************************************************/ /************************** INCLUDE ***************************/