From 7c39318bcddcf8e05e0958db4cab0e6125514ef0 Mon Sep 17 00:00:00 2001 From: Djordje Nedic Date: Mon, 19 Sep 2022 01:20:07 +0200 Subject: [PATCH] Bump version --- 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 f08536d..133565c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,3 +36,7 @@ - Refactored for performance improvements and code quality - Improved documentation in regards to configuration + +## 1.2.2 + +- Improved performance by using a write_wrapped flag instead of infering write wraps \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 05fc38c..e6111b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) project(lfbb - VERSION 1.2.1 + VERSION 1.2.2 LANGUAGES C CXX ) diff --git a/lfbb/inc/lfbb.h b/lfbb/inc/lfbb.h index 4277554..56f594c 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.2.1 - * @date 15. September 2022 + * @version 1.2.2 + * @date 19. September 2022 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.2.1 + * Version: 1.2.2 **************************************************************/ /************************** INCLUDE ***************************/ diff --git a/lfbb/src/lfbb.c b/lfbb/src/lfbb.c index be3f710..30925a8 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.2.1 - * @date 15. September 2022 + * @version 1.2.2 + * @date 19. September 2022 * @author Djordje Nedic **************************************************************/ @@ -37,7 +37,7 @@ * This file is part of LFBB - Lock Free Bipartite Buffer * * Author: Djordje Nedic - * Version: 1.2.1 + * Version: 1.2.2 **************************************************************/ /************************** INCLUDE ***************************/