From 3e1c9d8e8c42d8cc9c190555c3aeb0fd639a4667 Mon Sep 17 00:00:00 2001 From: Djordje Nedic Date: Thu, 10 Aug 2023 01:40:31 +0200 Subject: [PATCH] Release 1.3.3 --- 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 56850f3..e0de0d8 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,3 +52,7 @@ ## 1.3.2 - Performance and code conciseness improvements + +## 1.3.3 + +- Added the ability to configure the library through CMake diff --git a/CMakeLists.txt b/CMakeLists.txt index 69e9d6e..604f866 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) project(lfbb - VERSION 1.3.2 + VERSION 1.3.3 LANGUAGES C CXX ) diff --git a/lfbb/inc/lfbb.h b/lfbb/inc/lfbb.h index 22473cd..5723a55 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.2 - * @date 6. June 2023 + * @version 1.3.3 + * @date 10. August 2023 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.3.2 + * Version: 1.3.3 **************************************************************/ /************************** INCLUDE ***************************/ diff --git a/lfbb/src/lfbb.c b/lfbb/src/lfbb.c index 800312b..0729576 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.2 - * @date 6. June 2023 + * @version 1.3.3 + * @date 10. August 2023 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.3.2 + * Version: 1.3.3 **************************************************************/ /************************** INCLUDE ***************************/